Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/04/10 17:34:02 (14 years ago)
Author:
svonolfe
Message:

Further improved the VRP design (#1039)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Interfaces/IVRPOperator.cs

    r4068 r4154  
    2121
    2222
     23using HeuristicLab.Core;
     24using HeuristicLab.Data;
     25
    2326namespace HeuristicLab.Problems.VehicleRouting {
    2427  public interface IVRPOperator {
     28    ILookupParameter<DoubleMatrix> CoordinatesParameter { get; }
     29    int Cities { 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; }
    2538  }
    2639}
Note: See TracChangeset for help on using the changeset viewer.