Free cookie consent management tool by TermsFeed Policy Generator

Changes between Version 6 and Version 7 of Documentation/Howto/ImplementANewVRPProblemInstance


Ignore:
Timestamp:
04/21/15 10:35:11 (10 years ago)
Author:
pfleck
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/Howto/ImplementANewVRPProblemInstance

    v6 v7  
    325325#!cs
    326326public class TimeDependentInstanceProvider
    327   : VRPInstanceProvider {
     327  : VRPInstanceProvider<TimeDependentData> {
    328328
    329329  public override string Name {
     
    351351  }
    352352 
    353   public override VRPData ImportData(string path) {
     353  public override TimeDependentData ImportData(string path) {
    354354    return LoadInstance(new TimeDependentParser(path));
    355355  }
    356356 
    357357 
    358   protected override VRPData LoadData(Stream stream) {
     358  protected override TimeDependentData LoadData(Stream stream) {
    359359    return LoadInstance(new TimeDependentParser(stream));
    360360  }