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/2D/Evaluators/BinUtilizationEvaluator.cs

    r15583 r16462  
    2020#endregion
    2121
    22 using System;
    2322using System.Linq;
    2423using HeuristicLab.Core;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     24using HEAL.Fossil;
    2625using HeuristicLab.Common;
    2726
    2827namespace HeuristicLab.Problems.BinPacking2D {
    2928  [Item("Bin-Utilization Evaluator (2d)", "Calculates the overall utilization of bin space.")]
    30   [StorableClass]
     29  [StorableType("54C2F064-D3C8-40C0-808D-B952D0C43033")]
    3130  public class BinUtilizationEvaluator : Item, IEvaluator {
    3231
    3332    [StorableConstructor]
    34     protected BinUtilizationEvaluator(bool deserializing) : base(deserializing) { }
     33    protected BinUtilizationEvaluator(StorableConstructorFlag _) : base(_) { }
    3534    protected BinUtilizationEvaluator(BinUtilizationEvaluator original, Cloner cloner)
    3635      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.