Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/19/10 16:51:30 (14 years ago)
Author:
svonolfe
Message:

Added prins encoding (#1039)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/VRP/HeuristicLab.Problems.VehicleRouting/3.3/Interfaces/IVRPEncoding.cs

    r4230 r4268  
    2323using HeuristicLab.Problems.VehicleRouting.Encodings;
    2424using System.Collections.Generic;
     25using HeuristicLab.Data;
    2526
    2627namespace HeuristicLab.Problems.VehicleRouting {
    2728  public interface IVRPEncoding : IItem {
    28     List<Tour> GetTours();
     29    List<Tour> GetTours(ILookupParameter<DoubleMatrix> distanceMatrix, int maxVehicles = int.MaxValue);
    2930  }
    3031}
Note: See TracChangeset for help on using the changeset viewer.