Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/17 19:06:54 (7 years ago)
Author:
gkronber
Message:

#2520 fixed unit tests for new persistence: loading & storing all samples

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Interpreters/IVRPDataInterpreter.cs

    r14185 r14929  
    2323using HeuristicLab.Problems.VehicleRouting.Interfaces;
    2424using System;
     25using HeuristicLab.Persistence;
    2526
    2627namespace HeuristicLab.Problems.VehicleRouting.Interpreters {
     28  [StorableType("886ddfc7-60d7-4de3-9e2f-51e1b0aea3b9")]
    2729  public struct VRPInstanceDescription {
    2830    public string Name { get; set; }
     
    3335  }
    3436
     37  [StorableType("8212b8f3-281f-4c42-a7fd-ddd8cc791105")]
    3538  public interface IVRPDataInterpreter {
    3639    VRPInstanceDescription Interpret(IVRPData data);
    3740  }
    3841
     42  [StorableType("88d16c1c-579d-44fd-ba68-4d90ec8c98a5")]
    3943  public interface IVRPDataInterpreter<T> : IVRPDataInterpreter where T : IVRPData {
    4044  }
Note: See TracChangeset for help on using the changeset viewer.