Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/30/11 12:55:55 (13 years ago)
Author:
svonolfe
Message:

Added possibility to add a ready time to depots (#1177)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPTWEvaluation.cs

    r6752 r6855  
    2929namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3030  public class CVRPTWInsertionInfo : CVRPInsertionInfo {
     31    private double tourStartTime;
     32
     33    public double TourStartTime {
     34      get { return tourStartTime; }
     35    }
     36   
    3137    private double arrivalTime;
    3238
     
    5359    }
    5460
    55     public CVRPTWInsertionInfo(int start, int end, double spareCapacity, double arrivalTime, double leaveTime, double spareTime, double waitingTime)
     61    public CVRPTWInsertionInfo(int start, int end, double spareCapacity, double tourStartTime, double arrivalTime, double leaveTime, double spareTime, double waitingTime)
    5662      : base(start, end, spareCapacity) {
     63        this.tourStartTime = tourStartTime;
    5764        this.arrivalTime = arrivalTime;
    5865        this.leaveTime = leaveTime;
Note: See TracChangeset for help on using the changeset viewer.