Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/19 13:41:42 (5 years ago)
Author:
gkronber
Message:

#2520: merged changes from PersistenceOverhaul branch (r16451:16564) into trunk

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/Manipulators/PWRInsertionManipulator.cs

    r15583 r16565  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2525using HeuristicLab.Core;
    2626using HeuristicLab.Encodings.IntegerVectorEncoding;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Attic;
    2828
    2929namespace HeuristicLab.Encodings.ScheduleEncoding.PermutationWithRepetition {
    3030  [Item("PWRInsertionManipulator", "Represents a manipulation operation inserting parts of the individual at another position.")]
    31   [StorableClass]
     31  [StorableType("D2813869-42F7-4609-B7E0-4725E7565572")]
    3232  public class PWRInsertionManipulator : PWRManipulator {
    3333    [StorableConstructor]
    34     protected PWRInsertionManipulator(bool deserializing) : base(deserializing) { }
     34    protected PWRInsertionManipulator(StorableConstructorFlag _) : base(_) { }
    3535    protected PWRInsertionManipulator(PWRInsertionManipulator original, Cloner cloner) : base(original, cloner) { }
    3636    public PWRInsertionManipulator() : base() { }
  • trunk/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/Manipulators/PWRManipulator.cs

    r15583 r16565  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2323using HeuristicLab.Common;
    2424using HeuristicLab.Core;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HEAL.Attic;
    2626
    2727namespace HeuristicLab.Encodings.ScheduleEncoding.PermutationWithRepetition {
    2828  [Item("PWRManipulator", "An operator which manipulates a PWR representation.")]
    29   [StorableClass]
     29  [StorableType("22287F17-B833-40E0-AE6C-F1136DCF4997")]
    3030  public abstract class PWRManipulator : ScheduleManipulator, IPWROperator {
    3131
    3232    [StorableConstructor]
    33     protected PWRManipulator(bool deserializing) : base(deserializing) { }
     33    protected PWRManipulator(StorableConstructorFlag _) : base(_) { }
    3434    protected PWRManipulator(PWRManipulator original, Cloner cloner) : base(original, cloner) { }
    3535    public PWRManipulator()
Note: See TracChangeset for help on using the changeset viewer.