Changeset 4154 for trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Interfaces/IVRPEvaluator.cs
- Timestamp:
- 08/04/10 17:34:02 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Interfaces/IVRPEvaluator.cs
r4068 r4154 25 25 26 26 namespace HeuristicLab.Problems.VehicleRouting { 27 public interface IVRPEvaluator : ISingleObjectiveEvaluator {27 public interface IVRPEvaluator : ISingleObjectiveEvaluator, IVRPOperator { 28 28 ILookupParameter<IVRPEncoding> VRPSolutionParameter { get; } 29 ILookupParameter<DoubleMatrix> CoordinatesParameter { get; } 30 ILookupParameter<DoubleMatrix> DistanceMatrixParameter { get; } 31 ILookupParameter<BoolValue> UseDistanceMatrixParameter { get; } 32 ILookupParameter<IntValue> VehiclesParameter { get; } 33 ILookupParameter<DoubleValue> CapacityParameter { get; } 34 ILookupParameter<DoubleArray> DemandParameter { get; } 35 ILookupParameter<DoubleArray> ReadyTimeParameter { get; } 36 ILookupParameter<DoubleArray> DueTimeParameter { get; } 37 ILookupParameter<DoubleArray> ServiceTimeParameter { get; } 38 29 39 30 ILookupParameter<DoubleValue> VehcilesUtilizedParameter { get; } 40 31 ILookupParameter<DoubleValue> TravelTimeParameter { get; }
Note: See TracChangeset
for help on using the changeset viewer.