Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/07/19 23:40:10 (5 years ago)
Author:
mkommend
Message:

#2520: Merged 16565 - 16579 into stable.

Location:
stable
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Problems.NK/3.3/BinaryVectorComparers/AverageBitBinaryVectorComparer.cs

    r15584 r17097  
    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.
     
    2424using HeuristicLab.Core;
    2525using HeuristicLab.Encodings.BinaryVectorEncoding;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Attic;
    2727
    2828namespace HeuristicLab.Problems.NK {
    2929  [Item("Average Bit Binary Vector Comparer", "Compares two binary vectors by their average positive bit location")]
    30   [StorableClass]
     30  [StorableType("F782E957-3D46-40BC-B152-045F9E2BE330")]
    3131  public sealed class AverageBitBinaryVectorComparer : Item, IBinaryVectorComparer {
    3232    [StorableConstructor]
    33     private AverageBitBinaryVectorComparer(bool deserializing) : base(deserializing) { }
     33    private AverageBitBinaryVectorComparer(StorableConstructorFlag _) : base(_) { }
    3434    private AverageBitBinaryVectorComparer(AverageBitBinaryVectorComparer original, Cloner cloner)
    3535      : base(original, cloner) { }
  • stable/HeuristicLab.Problems.NK/3.3/BinaryVectorComparers/IBinaryVectorComparer.cs

    r15584 r17097  
    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.BinaryVectorEncoding;
     25using HEAL.Attic;
    2526
    2627namespace HeuristicLab.Problems.NK {
     28  [StorableType("056C41CB-BF99-418E-AAF5-85273EF0831A")]
    2729  public interface IBinaryVectorComparer : IItem, IComparer<BinaryVector> { }
    2830}
  • stable/HeuristicLab.Problems.NK/3.3/BinaryVectorComparers/LexicographicBinaryVectorComparer.cs

    r15584 r17097  
    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.
     
    2424using HeuristicLab.Core;
    2525using HeuristicLab.Encodings.BinaryVectorEncoding;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Attic;
    2727
    2828namespace HeuristicLab.Problems.NK {
    2929  [Item("Lexicographic Binary Vector Comparer", "Compares two binary vectors lexicographically")]
    30   [StorableClass]
     30  [StorableType("E107BAC1-B863-4704-9129-F258B0974285")]
    3131  public sealed class LexicographicBinaryVectorComparer : Item, IBinaryVectorComparer {
    3232    [StorableConstructor]
    33     private LexicographicBinaryVectorComparer(bool deserializing) : base(deserializing) { }
     33    private LexicographicBinaryVectorComparer(StorableConstructorFlag _) : base(_) { }
    3434    private LexicographicBinaryVectorComparer(LexicographicBinaryVectorComparer original, Cloner cloner)
    3535      : base(original, cloner) { }
  • stable/HeuristicLab.Problems.NK/3.3/BinaryVectorComparers/MedianBitBinaryVectorComparer.cs

    r15584 r17097  
    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.
     
    2424using HeuristicLab.Core;
    2525using HeuristicLab.Encodings.BinaryVectorEncoding;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Attic;
    2727
    2828namespace HeuristicLab.Problems.NK {
    2929  [Item("Median Bit Binary Vector Comparer", "Compares two binary vectors by the median positive bit location")]
    30   [StorableClass]
     30  [StorableType("C750F13C-F775-4A53-8725-DB26F38DC229")]
    3131  public sealed class MedianBitBinaryVectorComparer : Item, IBinaryVectorComparer {
    3232    [StorableConstructor]
    33     private MedianBitBinaryVectorComparer(bool deserializing) : base(deserializing) { }
     33    private MedianBitBinaryVectorComparer(StorableConstructorFlag _) : base(_) { }
    3434    private MedianBitBinaryVectorComparer(MedianBitBinaryVectorComparer original, Cloner cloner)
    3535      : base(original, cloner) { }
Note: See TracChangeset for help on using the changeset viewer.