- Timestamp:
- 11/17/10 07:41:28 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.TravelingSalesman/3.3/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.TravelingSalesman/3.3/Interfaces/ITSPCoordinatesPathEvaluator.cs
r4068 r4825 29 29 public interface ITSPCoordinatesPathEvaluator : ITSPPathEvaluator { 30 30 ILookupParameter<DoubleMatrix> CoordinatesParameter { get; } 31 ILookupParameter<D oubleMatrix> DistanceMatrixParameter { get; }31 ILookupParameter<DistanceMatrix> DistanceMatrixParameter { get; } 32 32 ILookupParameter<BoolValue> UseDistanceMatrixParameter { get; } 33 33 } -
trunk/sources/HeuristicLab.Problems.TravelingSalesman/3.3/Interfaces/ITSPPathMoveEvaluator.cs
r4068 r4825 27 27 public interface ITSPPathMoveEvaluator : ITSPMoveEvaluator, IPermutationMoveOperator { 28 28 ILookupParameter<DoubleMatrix> CoordinatesParameter { get; } 29 ILookupParameter<D oubleMatrix> DistanceMatrixParameter { get; }29 ILookupParameter<DistanceMatrix> DistanceMatrixParameter { get; } 30 30 ILookupParameter<BoolValue> UseDistanceMatrixParameter { get; } 31 31 }
Note: See TracChangeset
for help on using the changeset viewer.