Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (6 years ago)
Author:
jkarder
Message:

#2520: worked on reintegration of new persistence

  • added nuget references to HEAL.Fossil
  • added StorableType attributes to many classes
  • changed signature of StorableConstructors
  • removed some classes in old persistence
  • removed some unnecessary usings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPEvaluator.cs

    r16453 r16462  
    2424using HeuristicLab.Data;
    2525using HeuristicLab.Parameters;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Fossil;
    2727using HeuristicLab.Problems.VehicleRouting.Interfaces;
    2828using HeuristicLab.Problems.VehicleRouting.Variants;
     
    3030namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3131  [Item("CVRPEvaluator", "Represents a single depot CVRP evaluator.")]
    32   [StorableClass]
     32  [StorableType("7253D8EC-5F91-4E5F-99E0-45AF10AEA9AF")]
    3333  public class CVRPEvaluator : VRPEvaluator {
    3434    public ILookupParameter<DoubleValue> OverloadParameter {
     
    140140
    141141    [StorableConstructor]
    142     protected CVRPEvaluator(bool deserializing) : base(deserializing) { }
     142    protected CVRPEvaluator(StorableConstructorFlag _) : base(_) { }
    143143
    144144    public CVRPEvaluator() {
Note: See TracChangeset for help on using the changeset viewer.