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.BinPacking/3.3/3D/BinPacking3D.cs

    r15583 r16462  
    2323using System.Collections.Generic;
    2424using System.Linq;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HEAL.Fossil;
    2626using HeuristicLab.Core;
    2727using HeuristicLab.Common;
     
    3030namespace HeuristicLab.Problems.BinPacking3D {
    3131  [Item("BinPacking3D", "Represents a single-bin packing for a 3D bin-packing problem.")]
    32   [StorableClass]
     32  [StorableType("34D86A6D-F75F-4F62-9FB6-D7FEA738CECD")]
    3333  public class BinPacking3D : BinPacking<PackingPosition, PackingShape, PackingItem> {
    3434
     
    4343    }
    4444    [StorableConstructor]
    45     protected BinPacking3D(bool deserializing) : base(deserializing) { }
     45    protected BinPacking3D(StorableConstructorFlag _) : base(_) { }
    4646    protected BinPacking3D(BinPacking3D original, Cloner cloner)
    4747      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.