Changeset 4722 for trunk/sources/HeuristicLab.Problems.TravelingSalesman/3.3/MoveEvaluators/TwoOpt/TSPInversionMoveGeoPathEvaluator.cs
- Timestamp:
- 11/06/10 01:56:04 (14 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources
- Property svn:mergeinfo changed
/branches/CloningRefactoring (added) merged: 4656-4693,4696-4697,4711-4714,4718-4719
- Property svn:mergeinfo changed
-
trunk/sources/HeuristicLab.Problems.TravelingSalesman/3.3/MoveEvaluators/TwoOpt/TSPInversionMoveGeoPathEvaluator.cs
r4068 r4722 21 21 22 22 using System; 23 using HeuristicLab.Common; 23 24 using HeuristicLab.Core; 24 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; … … 38 39 private const double RADIUS = 6378.388; 39 40 41 [StorableConstructor] 42 protected TSPInversionMoveGeoPathEvaluator(bool deserializing) : base(deserializing) { } 43 protected TSPInversionMoveGeoPathEvaluator(TSPInversionMoveGeoPathEvaluator original, Cloner cloner) : base(original, cloner) { } 44 public TSPInversionMoveGeoPathEvaluator() : base() { } 45 46 public override IDeepCloneable Clone(Cloner cloner) { 47 return new TSPInversionMoveGeoPathEvaluator(this, cloner); 48 } 49 40 50 /// <summary> 41 51 /// Calculates the distance between two points using the GEO distance metric (globe coordinates).
Note: See TracChangeset
for help on using the changeset viewer.