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.LinearAssignment/3.3/LAPEvaluator.cs

    r16453 r16462  
    2222
    2323using HeuristicLab.Operators;
    24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     24using HEAL.Fossil;
    2525using HeuristicLab.Core;
    2626using HeuristicLab.Common;
     
    3131namespace HeuristicLab.Problems.LinearAssignment {
    3232  [Item("LAPEvaluator", "Evaluates a solution to the linear assignment problem.")]
    33   [StorableClass]
     33  [StorableType("DB86EA88-EE30-4E57-8447-D24B7B6ACB8A")]
    3434  public class LAPEvaluator : InstrumentedOperator, ILAPEvaluator {
    3535
     
    4545
    4646    [StorableConstructor]
    47     protected LAPEvaluator(bool deserializing) : base(deserializing) { }
     47    protected LAPEvaluator(StorableConstructorFlag _) : base(_) { }
    4848    protected LAPEvaluator(LAPEvaluator original, Cloner cloner) : base(original, cloner) { }
    4949    public LAPEvaluator()
Note: See TracChangeset for help on using the changeset viewer.