Changeset 3232 for trunk/sources/HeuristicLab.Problems.TravelingSalesman/3.3/MoveEvaluators/TwoOpt/TSPInversionMoveGeoPathEvaluator.cs
- Timestamp:
- 03/29/10 18:49:55 (15 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.TravelingSalesman/3.3/MoveEvaluators/TwoOpt/TSPInversionMoveGeoPathEvaluator.cs
r3229 r3232 26 26 namespace HeuristicLab.Problems.TravelingSalesman { 27 27 /// <summary> 28 /// An operator to evaluate 2-opt moves.28 /// An operator to evaluate inversion moves (2-opt). 29 29 /// </summary> 30 [Item("TSP TwoOptGeoPathMoveEvaluator", "Operator for evaluating a 2-opt movebased on geo (world) distances.")]30 [Item("TSPInversionMoveGeoPathEvaluator", "Operator for evaluating an inversion move (2-opt) based on geo (world) distances.")] 31 31 [StorableClass] 32 public class TSP TwoOptGeoPathMoveEvaluator : TSPTwoOptPathMoveEvaluator {32 public class TSPInversionMoveGeoPathEvaluator : TSPInversionMovePathEvaluator { 33 33 public override Type EvaluatorType { 34 34 get { return typeof(TSPGeoPathEvaluator); }
Note: See TracChangeset
for help on using the changeset viewer.