Changeset 6752 for branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPEvaluation.cs
- Timestamp:
- 09/13/11 16:00:19 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPEvaluation.cs
r4454 r6752 24 24 using System.Linq; 25 25 using System.Text; 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 using HeuristicLab.Core; 28 using HeuristicLab.Common; 26 29 27 30 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 31 public class CVRPInsertionInfo : StopInsertionInfo { 32 private double spareCapacity; 33 34 public double SpareCapacity { 35 get { return spareCapacity; } 36 } 37 38 public CVRPInsertionInfo(int start, int end, double spareCapacity) 39 : base(start, end) { 40 this.spareCapacity = spareCapacity; 41 } 42 } 43 28 44 public class CVRPEvaluation: VRPEvaluation { 29 45 public double Overload { get; set; }
Note: See TracChangeset
for help on using the changeset viewer.