Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/15/19 16:45:00 (5 years ago)
Author:
bwerth
Message:

#2745 updated persistence to HEAL.Attic

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2745_EfficientGlobalOptimization/HeuristicLab.Algorithms.EGO/Problems/InfillProblem.cs

    r15064 r17332  
    2323using System.Collections.Generic;
    2424using System.Linq;
     25using HEAL.Attic;
    2526using HeuristicLab.Common;
    2627using HeuristicLab.Core;
     
    3233
    3334namespace HeuristicLab.Algorithms.EGO {
    34   [StorableClass]
    35   [Item("InfillProblem", "A problem for finding the most interesing potential new sampling Points by optimizing some InfillCriterion")]
     35    [StorableType("4f14a2dd-b68c-4713-918c-46b264087212")]
     36    [Item("InfillProblem", "A problem for finding the most interesing potential new sampling Points by optimizing some InfillCriterion")]
    3637  public sealed class InfillProblem : SingleObjectiveBasicProblem<RealVectorEncoding> {
    3738
     
    6061    #region Constructors
    6162    [StorableConstructor]
    62     private InfillProblem(bool deserializing) : base(deserializing) { }
     63    private InfillProblem(StorableConstructorFlag deserializing) : base(deserializing) { }
    6364    private InfillProblem(InfillProblem original, Cloner cloner) : base(original, cloner) {
    6465      infillCriterion = cloner.Clone(original.infillCriterion);
Note: See TracChangeset for help on using the changeset viewer.