- Timestamp:
- 01/02/19 10:02:21 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.Problems.PTSP/3.3/Interfaces
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Problems.PTSP/3.3/Interfaces/IAnalyticalPTSPMoveEvaluator.cs
r16453 r16477 24 24 using HeuristicLab.Encodings.PermutationEncoding; 25 25 using HeuristicLab.Optimization; 26 using HEAL.Fossil; 26 27 27 28 namespace HeuristicLab.Problems.PTSP { 29 [StorableType("D503E92D-9A85-46AC-ADAA-8A454B9E9C79")] 28 30 public interface IAnalyticalPTSPMoveEvaluator : IAnalyticalPTSPOperator, ISingleObjectiveMoveEvaluator, IPermutationMoveOperator { 29 31 ILookupParameter<DoubleMatrix> CoordinatesParameter { get; } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.PTSP/3.3/Interfaces/IAnalyticalPTSPOperator.cs
r16453 r16477 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Data; 24 using HEAL.Fossil; 24 25 25 26 namespace HeuristicLab.Problems.PTSP { 27 [StorableType("1BB8344B-894B-48E9-9805-49938AE3F83F")] 26 28 public interface IAnalyticalPTSPOperator : IItem { 27 29 ILookupParameter<DoubleArray> ProbabilitiesParameter { get; } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.PTSP/3.3/Interfaces/IEstimatedPTSPMoveEvaluator.cs
r16453 r16477 24 24 using HeuristicLab.Encodings.PermutationEncoding; 25 25 using HeuristicLab.Optimization; 26 using HEAL.Fossil; 26 27 27 28 namespace HeuristicLab.Problems.PTSP { 29 [StorableType("FECFFE5C-64EE-4615-A9FC-786F2B37143A")] 28 30 public interface IEstimatedPTSPMoveEvaluator : IEstimatedPTSPOperator, ISingleObjectiveMoveEvaluator, IPermutationMoveOperator { 29 31 ILookupParameter<DoubleMatrix> CoordinatesParameter { get; } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.PTSP/3.3/Interfaces/IEstimatedPTSPOperator.cs
r16453 r16477 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Data; 24 using HEAL.Fossil; 24 25 25 26 namespace HeuristicLab.Problems.PTSP { 27 [StorableType("1998604C-41FF-4388-B413-8BD658D073E5")] 26 28 public interface IEstimatedPTSPOperator : IItem { 27 29 ILookupParameter<ItemList<BoolArray>> RealizationsParameter { get; } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.PTSP/3.3/Interfaces/ITwoPointFiveMoveOperator.cs
r16453 r16477 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Optimization; 24 using HEAL.Fossil; 24 25 25 26 namespace HeuristicLab.Problems.PTSP { 27 [StorableType("C21E0AC3-85BD-4F40-8DD6-E79A019278E1")] 26 28 public interface ITwoPointFiveMoveOperator : IMoveOperator { 27 29 ILookupParameter<TwoPointFiveMove> TwoPointFiveMoveParameter { get; }
Note: See TracChangeset
for help on using the changeset viewer.