- Timestamp:
- 01/02/19 10:02:21 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.Problems.Orienteering/3.3
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Orienteering/3.3/Interfaces/IOrienteeringEvaluator.cs
r16453 r16477 24 24 using HeuristicLab.Encodings.IntegerVectorEncoding; 25 25 using HeuristicLab.Optimization; 26 using HEAL.Fossil; 26 27 27 28 namespace HeuristicLab.Problems.Orienteering { 29 [StorableType("4F942163-D321-4935-BF2E-780193BE9FFE")] 28 30 public interface IOrienteeringEvaluator : ISingleObjectiveEvaluator { 29 31 ILookupParameter<IntegerVector> IntegerVectorParameter { get; } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Orienteering/3.3/Interfaces/IOrienteeringSolutionCreator.cs
r16453 r16477 23 23 using HeuristicLab.Data; 24 24 using HeuristicLab.Encodings.IntegerVectorEncoding; 25 using HEAL.Fossil; 25 26 26 27 namespace HeuristicLab.Problems.Orienteering { 28 [StorableType("7E0D4527-4D8C-4FBA-BB3A-26F20B6463ED")] 27 29 public interface IOrienteeringSolutionCreator : IIntegerVectorCreator { 28 30 ILookupParameter<DistanceMatrix> DistanceMatrixParameter { get; } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Orienteering/3.3/OrienteeringEvaluationResult.cs
r16453 r16477 21 21 22 22 using HeuristicLab.Data; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.Problems.Orienteering { 26 [StorableType("A7F34447-A3C9-4FB5-B52F-5143434B4084")] 25 27 public class OrienteeringEvaluationResult { 28 [Storable] 26 29 public DoubleValue Quality; 30 [Storable] 27 31 public DoubleValue Penalty; 32 [Storable] 28 33 public DoubleValue Distance; 34 35 [StorableConstructor] 36 protected OrienteeringEvaluationResult(StorableConstructorFlag _) { 37 } 38 39 public OrienteeringEvaluationResult() { } 29 40 } 30 41 } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Orienteering/3.3/Shakers/OrienteeringShakingOperator.cs
r16462 r16477 241 241 } 242 242 243 [StorableType("8E380F4E-D9C2-4671-ABF8-A28E14B22BA2")] 243 244 private class SavingInfo { 244 245 public int Index;
Note: See TracChangeset
for help on using the changeset viewer.