Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/24/20 00:58:42 (4 years ago)
Author:
abeham
Message:

#2521: working on VRP (WIP)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MultiDepotVRPProblemInstance.cs

    r17226 r17698  
    116116    }
    117117
    118     public int GetDepot(int customer, IVRPEncoding solution) {
     118    public int GetDepot(int customer, IVRPEncodedSolution solution) {
    119119      int depot = -1;
    120120
     
    131131    }
    132132
    133     public override double GetDistance(int start, int end, IVRPEncoding solution) {
     133    public override double GetDistance(int start, int end, IVRPEncodedSolution solution) {
    134134      if (start == 0 && end == 0)
    135135        return 0;
     
    149149    }
    150150
    151     public override double GetInsertionDistance(int start, int customer, int end, IVRPEncoding solution,
     151    public override double GetInsertionDistance(int start, int customer, int end, IVRPEncodedSolution solution,
    152152      out double startDistance, out double endDistance) {
    153153      if (start == 0) {
Note: See TracChangeset for help on using the changeset viewer.