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/Operators/SampleCollector.cs

    r15976 r17332  
    2222using System.Collections.Generic;
    2323using System.Linq;
     24using HEAL.Attic;
    2425using HeuristicLab.Common;
    2526using HeuristicLab.Core;
     
    2829using HeuristicLab.Operators;
    2930using HeuristicLab.Parameters;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3131using HeuristicLab.Problems.DataAnalysis;
    3232
    3333namespace HeuristicLab.Algorithms.EGO {
    3434  [Item("SampleCollector", "Collects RealVectors into a modifiablbe dataset")]
    35   [StorableClass]
    36   public class SampleCollector : InstrumentedOperator {
     35    [StorableType("f207dfb7-2f26-4a2a-9d23-eebf2c7df1de")]
     36    public class SampleCollector : InstrumentedOperator {
    3737    public override bool CanChangeName => true;
    3838
     
    4242
    4343    [StorableConstructor]
    44     protected SampleCollector(bool deserializing) : base(deserializing) { }
     44    protected SampleCollector(StorableConstructorFlag deserializing) : base(deserializing) { }
    4545    protected SampleCollector(SampleCollector original, Cloner cloner) : base(original, cloner) { }
    4646    public SampleCollector() {
Note: See TracChangeset for help on using the changeset viewer.