Changeset 17248 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.TravelingSalesman/3.3/MoveEvaluators
- Timestamp:
- 09/11/19 21:35:59 (5 years ago)
- Location:
- branches/2521_ProblemRefactoring/HeuristicLab.Problems.TravelingSalesman/3.3/MoveEvaluators
- Files:
-
- 2 added
- 2 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.TravelingSalesman/3.3/MoveEvaluators/TSPMoveEvaluator.cs
r17241 r17248 5 5 using HeuristicLab.Encodings.PermutationEncoding; 6 6 using HeuristicLab.Operators; 7 using HeuristicLab.Optimization; 7 8 using HeuristicLab.Parameters; 8 9 9 10 namespace HeuristicLab.Problems.TravelingSalesman { 10 11 [StorableType("17477ad2-2c84-4b02-b5ac-f35ef6cc667f")] 11 public interface ITSPMoveEvaluator : IOperator {12 public interface ITSPMoveEvaluator : IOperator, ISingleObjectiveMoveEvaluator, IMoveOperator { 12 13 ILookupParameter<Permutation> TSPTourParameter { get; } 13 14 ILookupParameter<ITSPData> TSPDataParameter { get; } … … 23 24 [Storable] public ILookupParameter<DoubleValue> TourLengthParameter { get; private set; } 24 25 [Storable] public ILookupParameter<DoubleValue> TourLengthWithMoveParameter { get; private set; } 26 27 ILookupParameter<DoubleValue> ISingleObjectiveMoveEvaluator.QualityParameter => TourLengthParameter; 28 ILookupParameter<DoubleValue> ISingleObjectiveMoveEvaluator.MoveQualityParameter => TourLengthWithMoveParameter; 25 29 26 30 [StorableConstructor]
Note: See TracChangeset
for help on using the changeset viewer.