Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/15 18:30:26 (9 years ago)
Author:
apolidur
Message:

#2221: Small refactoring and code cleaning

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PTSP/HeuristicLab.Problems.PTSP/3.3/Improvers/PTSPExhaustiveInversionLocalImprovement.cs

    r12228 r12380  
    107107        double evaluations = 0.0;
    108108        foreach (var move in ExhaustiveInversionMoveGenerator.Generate(assignment)) {
    109           double moveQuality = PTSPEstimatedInversionMovePathEvaluator.EvaluateByDistanceMatrix(assignment, move, distanceM, realizations);
     109          double moveQuality = PTSPEstimatedInversionEvaluator.EvaluateByDistanceMatrix(assignment, move, distanceM, realizations);
    110110          evaluations += 2 * (move.Index2 - move.Index1 + 1) / (double)assignment.Length;
    111111          if (maximization && moveQuality > bestQuality
Note: See TracChangeset for help on using the changeset viewer.