Changeset 4376 for branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Heterogenous
- Timestamp:
- 09/09/10 16:24:09 (14 years ago)
- Location:
- branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Heterogenous
- Files:
-
- 3 edited
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 }
Note: See TracChangeset
for help on using the changeset viewer.