Changeset 12380 for branches/PTSP/HeuristicLab.Problems.PTSP/3.3/Interfaces
- Timestamp:
- 05/04/15 18:30:26 (10 years ago)
- Location:
- branches/PTSP/HeuristicLab.Problems.PTSP/3.3/Interfaces
- Files:
-
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PTSP/HeuristicLab.Problems.PTSP/3.3/Interfaces/IPTSPMoveEvaluator.cs
r12191 r12380 20 20 #endregion 21 21 22 using HeuristicLab.Core; 23 using HeuristicLab.Data; 24 using HeuristicLab.Encodings.PermutationEncoding; 25 using HeuristicLab.Optimization; 22 26 using System; 23 using HeuristicLab.Optimization;24 27 25 28 namespace HeuristicLab.Problems.PTSP { 26 public interface IPTSPMoveEvaluator : ISingleObjectiveMoveEvaluator, IMoveOperator {29 public interface IPTSPMoveEvaluator : ISingleObjectiveMoveEvaluator, IMoveOperator, IPermutationMoveOperator { 27 30 Type EvaluatorType { get; } 31 ILookupParameter<DoubleMatrix> CoordinatesParameter { get; } 32 ILookupParameter<DistanceMatrix> DistanceMatrixParameter { get; } 33 ILookupParameter<BoolValue> UseDistanceMatrixParameter { get; } 34 28 35 } 29 36 }
Note: See TracChangeset
for help on using the changeset viewer.