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/PriorityRulesVector/Crossovers/PRVCrossover.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.PriorityRulesVector {
    2727  [Item("PRVCrossover", "An operator which crosses two PRV representations.")]
    28   [StorableClass]
     28  [StorableType("D5AD4BED-029A-4424-8512-F2F7E10D748D")]
    2929  public abstract class PRVCrossover : ScheduleCrossover, IPRVOperator {
    3030
    3131    [StorableConstructor]
    32     protected PRVCrossover(bool deserializing) : base(deserializing) { }
     32    protected PRVCrossover(StorableConstructorFlag _) : base(_) { }
    3333    protected PRVCrossover(PRVCrossover original, Cloner cloner) : base(original, cloner) { }
    3434    public PRVCrossover()
  • trunk/HeuristicLab.Encodings.ScheduleEncoding/3.3/PriorityRulesVector/Crossovers/PRVDiscreteCrossover.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.Core;
    2424using HeuristicLab.Encodings.IntegerVectorEncoding;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HEAL.Attic;
    2626
    2727namespace HeuristicLab.Encodings.ScheduleEncoding.PriorityRulesVector {
    2828  [Item("PRVDiscreteCrossover", "Represents a crossover operation swapping sequences of the parents to generate offspring.")]
    29   [StorableClass]
     29  [StorableType("79050109-0BDC-4EBE-A290-D32F99BB45D4")]
    3030  public class PRVDiscreteCrossover : PRVCrossover {
    3131
    3232    [StorableConstructor]
    33     protected PRVDiscreteCrossover(bool deserializing) : base(deserializing) { }
     33    protected PRVDiscreteCrossover(StorableConstructorFlag _) : base(_) { }
    3434    protected PRVDiscreteCrossover(PRVDiscreteCrossover original, Cloner cloner) : base(original, cloner) { }
    3535    public PRVDiscreteCrossover() : base() { }
  • trunk/HeuristicLab.Encodings.ScheduleEncoding/3.3/PriorityRulesVector/Crossovers/PRVSinglePointCrossover.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.Core;
    2424using HeuristicLab.Encodings.IntegerVectorEncoding;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HEAL.Attic;
    2626
    2727namespace HeuristicLab.Encodings.ScheduleEncoding.PriorityRulesVector {
    2828  [Item("PRVSinglePointCrossover", "Represents a crossover operation swapping sequences of the parents to generate offspring.")]
    29   [StorableClass]
     29  [StorableType("7E148F4E-1993-44B5-B466-E1E441203498")]
    3030  public class PRVSinglePointCrossover : PRVCrossover {
    3131
    3232    [StorableConstructor]
    33     protected PRVSinglePointCrossover(bool deserializing) : base(deserializing) { }
     33    protected PRVSinglePointCrossover(StorableConstructorFlag _) : base(_) { }
    3434    protected PRVSinglePointCrossover(PRVSinglePointCrossover original, Cloner cloner) : base(original, cloner) { }
    3535    public PRVSinglePointCrossover() : base() { }
Note: See TracChangeset for help on using the changeset viewer.