- Timestamp:
- 10/15/19 16:45:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2745_EfficientGlobalOptimization/HeuristicLab.Algorithms.EGO/Problems/InfillProblem.cs
r15064 r17332 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using HEAL.Attic; 25 26 using HeuristicLab.Common; 26 27 using HeuristicLab.Core; … … 32 33 33 34 namespace 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")] 36 37 public sealed class InfillProblem : SingleObjectiveBasicProblem<RealVectorEncoding> { 37 38 … … 60 61 #region Constructors 61 62 [StorableConstructor] 62 private InfillProblem( booldeserializing) : base(deserializing) { }63 private InfillProblem(StorableConstructorFlag deserializing) : base(deserializing) { } 63 64 private InfillProblem(InfillProblem original, Cloner cloner) : base(original, cloner) { 64 65 infillCriterion = cloner.Clone(original.infillCriterion);
Note: See TracChangeset
for help on using the changeset viewer.