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.TestFunctions.MultiObjective/3.3/MultiObjectiveTestFunctionProblem.cs

    r16453 r16462  
    2828using HeuristicLab.Optimization;
    2929using HeuristicLab.Parameters;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Fossil;
    3131using HeuristicLab.Problems.Instances;
    3232
    3333namespace HeuristicLab.Problems.TestFunctions.MultiObjective {
    34   [StorableClass]
     34  [StorableType("AB0C6A73-C432-46FD-AE3B-9841EAB2478C")]
    3535  [Creatable(CreatableAttribute.Categories.Problems, Priority = 95)]
    3636  [Item("Test Function (multi-objective)", "Test functions with real valued inputs and multiple objectives.")]
     
    9797
    9898    [StorableConstructor]
    99     protected MultiObjectiveTestFunctionProblem(bool deserializing) : base(deserializing) { }
     99    protected MultiObjectiveTestFunctionProblem(StorableConstructorFlag _) : base(_) { }
    100100    [StorableHook(HookType.AfterDeserialization)]
    101101    private void AfterDeserialization() {
Note: See TracChangeset for help on using the changeset viewer.