Changeset 17709 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/VRPEvaluation.cs
- Timestamp:
- 08/03/20 11:35:39 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/VRPEvaluation.cs
r17708 r17709 124 124 [Item("VRPEvaluation", "")] 125 125 [StorableType("0c4dfa78-8e41-4558-b2dd-4a22954c35ba")] 126 public class VRPEvaluation : EvaluationResult { 126 public class VRPEvaluation : EvaluationResult, ISingleObjectiveEvaluationResult { 127 // TODO: Would be nice to collect these, into individual results in a run 127 128 [Storable] public double Quality { get; set; } 128 129 [Storable] public double Distance { get; set; } … … 130 131 [Storable] public InsertionInfo InsertionInfo { get; set; } 131 132 [Storable] public double Penalty { get; set; } 132 133 [Storable] public bool IsFeasible { get; set; } 133 134 134 135 [StorableConstructor] … … 141 142 InsertionInfo = cloner.Clone(original.InsertionInfo); 142 143 Penalty = original.Penalty; 144 IsFeasible = original.IsFeasible; 143 145 } 144 146 public VRPEvaluation() : base() {
Note: See TracChangeset
for help on using the changeset viewer.