Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/25/10 15:01:48 (14 years ago)
Author:
svonolfe
Message:

Fixed some problems in the VRP implementation (#1039)

File:
1 edited

Legend:

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

    r3938 r3947  
    145145        readyTime.Add((double)int.Parse(m[4].Value));
    146146        double st = (double)int.Parse(m[6].Value);
    147         dueTime.Add(st + (double)int.Parse(m[5].Value));
     147        dueTime.Add((double)int.Parse(m[5].Value));
    148148        serviceTime.Add(st);
    149149        line = reader.ReadLine();
Note: See TracChangeset for help on using the changeset viewer.