- Timestamp:
- 05/04/17 19:06:54 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Problems.PTSP/3.3/Interfaces
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Problems.PTSP/3.3/Interfaces/IAnalyticalPTSPMoveEvaluator.cs
r14185 r14929 24 24 using HeuristicLab.Encodings.PermutationEncoding; 25 25 using HeuristicLab.Optimization; 26 using HeuristicLab.Persistence; 26 27 27 28 namespace HeuristicLab.Problems.PTSP { 29 [StorableType("f9ff6a1f-ed47-4f30-8f95-e367b49de925")] 28 30 public interface IAnalyticalPTSPMoveEvaluator : IAnalyticalPTSPOperator, ISingleObjectiveMoveEvaluator, IPermutationMoveOperator { 29 31 ILookupParameter<DoubleMatrix> CoordinatesParameter { get; } -
branches/PersistenceReintegration/HeuristicLab.Problems.PTSP/3.3/Interfaces/IAnalyticalPTSPOperator.cs
r14185 r14929 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Data; 24 using HeuristicLab.Persistence; 24 25 25 26 namespace HeuristicLab.Problems.PTSP { 27 [StorableType("3c9313f9-14fd-403d-9d27-467596a9c68f")] 26 28 public interface IAnalyticalPTSPOperator : IItem { 27 29 ILookupParameter<DoubleArray> ProbabilitiesParameter { get; } -
branches/PersistenceReintegration/HeuristicLab.Problems.PTSP/3.3/Interfaces/IEstimatedPTSPMoveEvaluator.cs
r14185 r14929 24 24 using HeuristicLab.Encodings.PermutationEncoding; 25 25 using HeuristicLab.Optimization; 26 using HeuristicLab.Persistence; 26 27 27 28 namespace HeuristicLab.Problems.PTSP { 29 [StorableType("929f3b81-3cf9-4256-8ddb-8b27147b5dc5")] 28 30 public interface IEstimatedPTSPMoveEvaluator : IEstimatedPTSPOperator, ISingleObjectiveMoveEvaluator, IPermutationMoveOperator { 29 31 ILookupParameter<DoubleMatrix> CoordinatesParameter { get; } -
branches/PersistenceReintegration/HeuristicLab.Problems.PTSP/3.3/Interfaces/IEstimatedPTSPOperator.cs
r14185 r14929 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Data; 24 using HeuristicLab.Persistence; 24 25 25 26 namespace HeuristicLab.Problems.PTSP { 27 [StorableType("7d9e9cb6-2e27-41cc-a4f6-d8f0d8e4ecaf")] 26 28 public interface IEstimatedPTSPOperator : IItem { 27 29 ILookupParameter<ItemList<BoolArray>> RealizationsParameter { get; } -
branches/PersistenceReintegration/HeuristicLab.Problems.PTSP/3.3/Interfaces/ITwoPointFiveMoveOperator.cs
r14185 r14929 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Optimization; 24 using HeuristicLab.Persistence; 24 25 25 26 namespace HeuristicLab.Problems.PTSP { 27 [StorableType("16912776-fa24-4691-b8c9-5fa810bc37b9")] 26 28 public interface ITwoPointFiveMoveOperator : IMoveOperator { 27 29 ILookupParameter<TwoPointFiveMove> TwoPointFiveMoveParameter { get; }
Note: See TracChangeset
for help on using the changeset viewer.