Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (6 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.Encodings.PermutationEncoding/3.3/Creators/RandomPermutationCreator.cs

    r16453 r16462  
    2626using HeuristicLab.Optimization;
    2727using HeuristicLab.Parameters;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Fossil;
    2929
    3030namespace HeuristicLab.Encodings.PermutationEncoding {
     
    3333  /// </summary>
    3434  [Item("RandomPermutationCreator", "An operator which creates a new random permutation of integer values.")]
    35   [StorableClass]
     35  [StorableType("527B14A9-DB58-4507-8C3F-1DE1EF4C4A2B")]
    3636  public sealed class RandomPermutationCreator : InstrumentedOperator, IPermutationCreator, IStochasticOperator {
    3737    public override bool CanChangeName {
     
    5858
    5959    [StorableConstructor]
    60     private RandomPermutationCreator(bool deserializing) : base(deserializing) { }
     60    private RandomPermutationCreator(StorableConstructorFlag _) : base(_) { }
    6161    private RandomPermutationCreator(RandomPermutationCreator original, Cloner cloner) : base(original, cloner) { }
    6262    public RandomPermutationCreator()
Note: See TracChangeset for help on using the changeset viewer.