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/3.3/PathRelinkers/SingleObjectiveTestFunctionPathRelinker.cs

    r16453 r16462  
    2929using HeuristicLab.Optimization.Operators;
    3030using HeuristicLab.Parameters;
    31 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     31using HEAL.Fossil;
    3232
    3333namespace HeuristicLab.Problems.TestFunctions {
     
    4040  /// </remarks>
    4141  [Item("SingleObjectiveTestFunctionPathRelinker", "An operator that relinks paths between test functions solutions. It is based on an implementation described in Duarte, A., Martí, R., and Gortazar, F. (2011). Path Relinking for Large Scale Global Optimization. Soft Computing, Vol. 15.")]
    42   [StorableClass]
     42  [StorableType("BBDCF6E0-AB7F-4A5B-8BFC-A2D2D1E56D5C")]
    4343  public sealed class SingleObjectiveTestFunctionPathRelinker : SingleObjectivePathRelinker {
    4444    #region Parameter properties
     
    5555
    5656    [StorableConstructor]
    57     private SingleObjectiveTestFunctionPathRelinker(bool deserializing) : base(deserializing) { }
     57    private SingleObjectiveTestFunctionPathRelinker(StorableConstructorFlag _) : base(_) { }
    5858    private SingleObjectiveTestFunctionPathRelinker(SingleObjectiveTestFunctionPathRelinker original, Cloner cloner) : base(original, cloner) { }
    5959    public SingleObjectiveTestFunctionPathRelinker()
Note: See TracChangeset for help on using the changeset viewer.