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.Algorithms.RAPGA/3.3/RAPGAMainLoop.cs

    r16453 r16462  
    2727using HeuristicLab.Optimization.Operators;
    2828using HeuristicLab.Parameters;
    29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Fossil;
    3030using HeuristicLab.Selection;
    3131
     
    3535  /// </summary>
    3636  [Item("RAPGAMainLoop", "An operator which represents the main loop of a relevant alleles preserving genetic algorithm.")]
    37   [StorableClass]
     37  [StorableType("31A887DE-2FE2-419A-9784-1BAE52067930")]
    3838  public sealed class RAPGAMainLoop : AlgorithmOperator {
    3939    #region Parameter properties
     
    111111
    112112    [StorableConstructor]
    113     private RAPGAMainLoop(bool deserializing) : base(deserializing) { }
     113    private RAPGAMainLoop(StorableConstructorFlag _) : base(_) { }
    114114    private RAPGAMainLoop(RAPGAMainLoop original, Cloner cloner) : base(original, cloner) { }
    115115    public RAPGAMainLoop()
Note: See TracChangeset for help on using the changeset viewer.