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:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/Crossovers/PWRCrossover.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.
     
    2222using HeuristicLab.Common;
    2323using HeuristicLab.Core;
    24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     24using HEAL.Attic;
    2525
    2626namespace HeuristicLab.Encodings.ScheduleEncoding.PermutationWithRepetition {
    2727  [Item("PWRCrossover", "An operator which crosses two JSM representations.")]
    28   [StorableClass]
     28  [StorableType("53331857-83AF-4966-940E-1137FBA7205C")]
    2929  public abstract class PWRCrossover : ScheduleCrossover, IPWROperator {
    3030
    3131    [StorableConstructor]
    32     protected PWRCrossover(bool deserializing) : base(deserializing) { }
     32    protected PWRCrossover(StorableConstructorFlag _) : base(_) { }
    3333    protected PWRCrossover(PWRCrossover original, Cloner cloner) : base(original, cloner) { }
    3434    public PWRCrossover()
  • trunk/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/Crossovers/PWRGOXCrossover.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("PWRGeneralizationOrderCrossover", "Represents a crossover operation swapping sequences of the parents to generate offspring.")]
    31   [StorableClass]
     31  [StorableType("DB974328-5DB4-4B9A-8223-924E929C573B")]
    3232  public class PWRGOXCrossover : PWRCrossover {
    3333
    3434    [StorableConstructor]
    35     protected PWRGOXCrossover(bool deserializing) : base(deserializing) { }
     35    protected PWRGOXCrossover(StorableConstructorFlag _) : base(_) { }
    3636    protected PWRGOXCrossover(PWRGOXCrossover original, Cloner cloner) : base(original, cloner) { }
    3737    public PWRGOXCrossover() : base() { }
  • trunk/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/Crossovers/PWRPPXCrossover.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("PWRPPXCrossover", "Represents a crossover operation swapping sequences of the parents to generate offspring.")]
    31   [StorableClass]
     31  [StorableType("B5749161-8599-4F89-AAC7-414C53576B10")]
    3232  public class PWRPPXCrossover : PWRCrossover {
    3333
    3434    [StorableConstructor]
    35     protected PWRPPXCrossover(bool deserializing) : base(deserializing) { }
     35    protected PWRPPXCrossover(StorableConstructorFlag _) : base(_) { }
    3636    protected PWRPPXCrossover(PWRPPXCrossover original, Cloner cloner) : base(original, cloner) { }
    3737    public PWRPPXCrossover() : base() { }
Note: See TracChangeset for help on using the changeset viewer.