Free cookie consent management tool by TermsFeed Policy Generator

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

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

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/HeuristicLab.Problems.ParameterOptimization/3.3/BestSolutionsAnalyzer.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.
     
    2929using HeuristicLab.Optimization;
    3030using HeuristicLab.Parameters;
    31 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     31using HEAL.Attic;
    3232
    3333namespace HeuristicLab.Problems.ParameterOptimization {
    3434  [Item("BestSolutionsAnalyzer", "Tracks the best parameter vector solutions of the current algorithm run.")]
    35   [StorableClass]
     35  [StorableType("4882160E-6022-4AFC-AD84-9D7D7FF55562")]
    3636  public class BestSolutionsAnalyzer : SingleSuccessorOperator, IAnalyzer {
    3737    private const string MaximizationParameterName = "Maximization";
     
    7676
    7777    [StorableConstructor]
    78     protected BestSolutionsAnalyzer(bool deserializing) : base(deserializing) { }
     78    protected BestSolutionsAnalyzer(StorableConstructorFlag _) : base(_) { }
    7979    protected BestSolutionsAnalyzer(BestSolutionsAnalyzer original, Cloner cloner)
    8080      : base(original, cloner) { }
     
    150150  }
    151151
     152  [StorableType("EB92A47A-F96B-4C42-9D31-EF4992320794")]
    152153  public class DoubleArrayEqualityComparer : IEqualityComparer<DoubleArray> {
    153154    public bool Equals(DoubleArray x, DoubleArray y) {
Note: See TracChangeset for help on using the changeset viewer.