- Timestamp:
- 09/09/10 16:24:09 (14 years ago)
- Location:
- branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated
- Files:
-
- 3 edited
- 2 copied
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Heterogenous/IHeterogenousCapacitatedEncoding.cs
r4363 r4376 26 26 27 27 namespace HeuristicLab.Problems.VehicleRouting.Variants { 28 public interface IHeterogenousCapacitatedEncoding : ICapacitatedEncoding {29 List<int> GetVehicleAssignment();28 public interface IHeterogenousCapacitatedEncoding : IHomogenousCapacitatedEncoding { 29 int GetVehicleAssignment(int tour); 30 30 } 31 31 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Heterogenous/IHeterogenousCapacitatedOperator.cs
r4363 r4376 26 26 27 27 namespace HeuristicLab.Problems.VehicleRouting.Variants { 28 public interface IHeterogenousCapacitatedOperator: I CapacitatedOperator {28 public interface IHeterogenousCapacitatedOperator: IHomogenousCapacitatedOperator { 29 29 } 30 30 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Heterogenous/IHeterogenousCapacitatedProblemInstance.cs
r4363 r4376 24 24 using System.Linq; 25 25 using System.Text; 26 using HeuristicLab.Data; 26 27 27 28 namespace HeuristicLab.Problems.VehicleRouting.Variants { 28 29 public interface IHeterogenousCapacitatedProblemInstance : ICapacitatedProblemInstance { 30 DoubleArray Capacity { get; } 29 31 } 30 32 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Homogenous/IHomogenousCapacitatedEncoding.cs
r4374 r4376 27 27 28 28 namespace HeuristicLab.Problems.VehicleRouting.Variants { 29 public interface I CapacitatedEncoding: IVRPEncoding {29 public interface IHomogenousCapacitatedEncoding : IVRPEncoding { 30 30 } 31 31 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Homogenous/IHomogenousCapacitatedOperator.cs
r4374 r4376 27 27 28 28 namespace HeuristicLab.Problems.VehicleRouting.Variants { 29 public interface I CapacitatedOperator: IVRPOperator {29 public interface IHomogenousCapacitatedOperator : ICapacitatedOperator { 30 30 } 31 31 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Homogenous/IHomogenousCapacitatedProblemInstance.cs
r4374 r4376 28 28 29 29 namespace HeuristicLab.Problems.VehicleRouting.Variants { 30 public interface I CapacitatedProblemInstance: IVRPProblemInstance {30 public interface IHomogenousCapacitatedProblemInstance: ICapacitatedProblemInstance { 31 31 DoubleValue Capacity { get; } 32 DoubleValue OverloadPenalty { get; }33 32 } 34 33 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/ICapacitatedOperator.cs
r4374 r4376 27 27 28 28 namespace HeuristicLab.Problems.VehicleRouting.Variants { 29 public interface ICapacitatedOperator : IVRPOperator {29 public interface ICapacitatedOperator : IVRPOperator { 30 30 } 31 31 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/ICapacitatedProblemInstance.cs
r4374 r4376 29 29 namespace HeuristicLab.Problems.VehicleRouting.Variants { 30 30 public interface ICapacitatedProblemInstance: IVRPProblemInstance { 31 DoubleValue Capacity { get; }32 31 DoubleValue OverloadPenalty { get; } 33 32 }
Note: See TracChangeset
for help on using the changeset viewer.