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.Encodings.PermutationEncoding/3.3/Manipulators/InsertionManipulator.cs

    r16453 r16462  
    2222using HeuristicLab.Common;
    2323using HeuristicLab.Core;
    24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     24using HEAL.Fossil;
    2525
    2626namespace HeuristicLab.Encodings.PermutationEncoding {
     
    3232  /// </remarks>
    3333  [Item("InsertionManipulator", "An operator which moves randomly one element to another position in the permutation (Insertion is a special case of Translocation). It is implemented as described in Fogel, D.B. (1988). An Evolutionary Approach to the Traveling Salesman Problem, Biological Cybernetics, 60, pp. 139-144.")]
    34   [StorableClass]
     34  [StorableType("E8C09728-ACB7-491B-B87C-BE8E2B5A5B0B")]
    3535  public class InsertionManipulator : PermutationManipulator {
    3636    [StorableConstructor]
    37     protected InsertionManipulator(bool deserializing) : base(deserializing) { }
     37    protected InsertionManipulator(StorableConstructorFlag _) : base(_) { }
    3838    protected InsertionManipulator(InsertionManipulator original, Cloner cloner) : base(original, cloner) { }
    3939    public InsertionManipulator() : base() { }
Note: See TracChangeset for help on using the changeset viewer.