Changes between Version 9 and Version 10 of Documentation/Howto/ImplementANewVRPEvaluator
- Timestamp:
- 10/05/20 10:10:00 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentation/Howto/ImplementANewVRPEvaluator
v9 v10 35 35 - HeuristicLab.Optimization 36 36 - HeuristicLab.Parameters 37 - H euristicLab.Persistence37 - HEAL.Attic 38 38 - '''HeuristicLab.Problems.VehicleRouting''' 39 39 … … 111 111 #!cs 112 112 [Item("CPRPEvaluator", "Represents a single depot CPRP evaluator.")] 113 [Storable Class]113 [StorableType("92436de7-ae7a-4b9e-9052-97166d68b6a8")] 114 114 public class CPRPEvaluator : CVRPEvaluator { 115 115 public ILookupParameter<DoubleValue> EnergyConsumptionParameter { … … 118 118 119 119 [StorableConstructor] 120 protected CPRPEvaluator( bool deserializing) : base(deserializing) { }120 protected CPRPEvaluator(StorableConstructorFlag _) : base(_) { } 121 121 122 122 public CPRPEvaluator() {