- Timestamp:
- 12/12/11 12:38:24 (13 years ago)
- Location:
- branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestSolution
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestSolution/BestVRPSolutionAnalyzer.cs
r6607 r7175 70 70 public LookupParameter<VRPSolution> BestKnownSolutionParameter { 71 71 get { return (LookupParameter<VRPSolution>)Parameters["BestKnownSolution"]; } 72 } 73 74 public bool EnabledByDefault { 75 get { return true; } 72 76 } 73 77 -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestSolution/Capacitated/BestCapacitatedVRPSolutionAnalyzer.cs
r6710 r7175 59 59 } 60 60 61 public bool EnabledByDefault { 62 get { return true; } 63 } 64 61 65 [StorableConstructor] 62 66 private BestCapacitatedVRPSolutionAnalyzer(bool deserializing) : base(deserializing) { } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestSolution/PickupAndDelivery/BestPickupAndDeliveryVRPSolutionAnalyzer.cs
r6710 r7175 59 59 } 60 60 61 public bool EnabledByDefault { 62 get { return true; } 63 } 64 61 65 [StorableConstructor] 62 66 private BestPickupAndDeliveryVRPSolutionAnalyzer(bool deserializing) : base(deserializing) { } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestSolution/TimeWindowed/BestTimeWindowedVRPSolutionAnalyzer.cs
r6710 r7175 62 62 } 63 63 64 public bool EnabledByDefault { 65 get { return true; } 66 } 67 64 68 [StorableConstructor] 65 69 private BestTimeWindowedVRPSolutionAnalyzer(bool deserializing) : base(deserializing) { }
Note: See TracChangeset
for help on using the changeset viewer.