Free cookie consent management tool by TermsFeed Policy Generator

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

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.Problems.BinPacking/3.3/3D/Solution.cs

    r14167 r14927  
    11using HeuristicLab.Common;
    22using HeuristicLab.Core;
    3 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     3using HeuristicLab.Persistence;
    44using HeuristicLab.Problems.BinPacking;
    55
    66namespace HeuristicLab.Problems.BinPacking3D {
    77  [Item("Bin Packing Solution (3d)", "Represents a solution for a 3D bin packing problem.")]
    8   [StorableClass]
     8  [StorableType("5bafe500-cd74-44e9-91ff-aafbb9c5d0b2")]
    99  public class Solution : PackingPlan<PackingPosition, PackingShape, PackingItem> {
    1010    public Solution(PackingShape binShape) : this(binShape, false, false) { }
Note: See TracChangeset for help on using the changeset viewer.