Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (5 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.BinPacking/3.3/BinPacking.cs

    r15583 r16462  
    2020#endregion
    2121
    22 using System;
    2322using System.Collections.Generic;
    2423using System.Linq;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     24using HEAL.Fossil;
    2625using HeuristicLab.Core;
    2726using HeuristicLab.Common;
     
    3029namespace HeuristicLab.Problems.BinPacking {
    3130  [Item("BinPacking", "Represents a single-bin packing for a bin-packing problem.")]
    32   [StorableClass]
     31  [StorableType("7B0C7B64-CB50-405F-9F73-15B7C86F9B86")]
    3332  public abstract class BinPacking<TPos, TBin, TItem> : Item
    3433    where TPos : class, IPackingPosition
     
    6766
    6867    [StorableConstructor]
    69     protected BinPacking(bool deserializing) : base(deserializing) { }
     68    protected BinPacking(StorableConstructorFlag _) : base(_) { }
    7069    protected BinPacking(BinPacking<TPos, TBin, TItem> original, Cloner cloner)
    7170      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.