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.ALPS/3.3/AlpsGeneticAlgorithmMainOperator.cs

    r16453 r16462  
    2626using HeuristicLab.Optimization.Operators;
    2727using HeuristicLab.Parameters;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Fossil;
    2929using HeuristicLab.Selection;
    3030
    3131namespace HeuristicLab.Algorithms.ALPS {
    3232  [Item("AlpsGeneticAlgorithmMainOperator", "An operator that represents the core of an ALPS genetic algorithm.")]
    33   [StorableClass]
     33  [StorableType("3F16B0C0-9054-4FE8-A6B1-2CCED065AC26")]
    3434  public sealed class AlpsGeneticAlgorithmMainOperator : AlgorithmOperator {
    3535    #region Parameter properties
     
    8888
    8989    [StorableConstructor]
    90     private AlpsGeneticAlgorithmMainOperator(bool deserializing) : base(deserializing) { }
     90    private AlpsGeneticAlgorithmMainOperator(StorableConstructorFlag _) : base(_) { }
    9191    private AlpsGeneticAlgorithmMainOperator(AlpsGeneticAlgorithmMainOperator original, Cloner cloner)
    9292      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.