Changeset 14712 for branches/PersistenceOverhaul/HeuristicLab.Problems.TravelingSalesman/3.3/Interfaces
- Timestamp:
- 03/03/17 17:33:24 (8 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Problems.TravelingSalesman/3.3/Interfaces
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Problems.TravelingSalesman/3.3/Interfaces/ITSPCoordinatesPathEvaluator.cs
r12012 r14712 27 27 /// An interface which represents an evaluation operator which evaluates TSP solutions given in path representation using city coordinates. 28 28 /// </summary> 29 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("3AEBFA31-DAF2-42B6-A948-618E4D717C74")] 29 30 public interface ITSPCoordinatesPathEvaluator : ITSPPathEvaluator { 30 31 ILookupParameter<DoubleMatrix> CoordinatesParameter { get; } -
branches/PersistenceOverhaul/HeuristicLab.Problems.TravelingSalesman/3.3/Interfaces/ITSPDistanceMatrixEvaluator.cs
r12012 r14712 26 26 /// An interface which represents an evaluation operator which evaluates TSP solutions given in path representation using a distance matrix. 27 27 /// </summary> 28 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("7138507C-119A-48F8-8844-AFC355A6AE44")] 28 29 public interface ITSPDistanceMatrixEvaluator : ITSPPathEvaluator { 29 30 ILookupParameter<DistanceMatrix> DistanceMatrixParameter { get; } -
branches/PersistenceOverhaul/HeuristicLab.Problems.TravelingSalesman/3.3/Interfaces/ITSPEvaluator.cs
r12012 r14712 26 26 /// An interface which represents an evaluation operator for Traveling Salesman Problems. 27 27 /// </summary> 28 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("BFCA45EA-E8C1-4A53-A09A-C022CC282683")] 28 29 public interface ITSPEvaluator : ISingleObjectiveEvaluator { } 29 30 } -
branches/PersistenceOverhaul/HeuristicLab.Problems.TravelingSalesman/3.3/Interfaces/ITSPMoveEvaluator.cs
r12012 r14712 24 24 25 25 namespace HeuristicLab.Problems.TravelingSalesman { 26 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("CBE968CC-BF91-4F2A-9CB4-9205B6271ECC")] 26 27 public interface ITSPMoveEvaluator : ISingleObjectiveMoveEvaluator, IMoveOperator { 27 28 Type EvaluatorType { get; } -
branches/PersistenceOverhaul/HeuristicLab.Problems.TravelingSalesman/3.3/Interfaces/ITSPPathEvaluator.cs
r12012 r14712 27 27 /// An interface which represents an evaluation operator which evaluates TSP solutions given in path representation. 28 28 /// </summary> 29 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("684C011F-D380-4FEF-9827-84A7AE3AD85E")] 29 30 public interface ITSPPathEvaluator : ITSPEvaluator { 30 31 ILookupParameter<Permutation> PermutationParameter { get; } -
branches/PersistenceOverhaul/HeuristicLab.Problems.TravelingSalesman/3.3/Interfaces/ITSPPathMoveEvaluator.cs
r12012 r14712 25 25 26 26 namespace HeuristicLab.Problems.TravelingSalesman { 27 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("35F8F0D7-3EFD-48C8-9198-C5ACD5BEB790")] 27 28 public interface ITSPPathMoveEvaluator : ITSPMoveEvaluator, IPermutationMoveOperator { 28 29 ILookupParameter<DoubleMatrix> CoordinatesParameter { get; }
Note: See TracChangeset
for help on using the changeset viewer.