Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (6 years ago)
Author:
jkarder
Message:

#2520: worked on reintegration of new persistence

  • added nuget references to HEAL.Fossil
  • added StorableType attributes to many classes
  • changed signature of StorableConstructors
  • removed some classes in old persistence
  • removed some unnecessary usings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2520_PersistenceReintegration/HeuristicLab.Optimization.Operators/3.3/ResultsCollector.cs

    r16453 r16462  
    2626using HeuristicLab.Operators;
    2727using HeuristicLab.Parameters;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Fossil;
    2929
    3030namespace HeuristicLab.Optimization.Operators {
     
    3333  /// </summary>
    3434  [Item("ResultsCollector", "An operator which collects the actual values of parameters and adds them to a collection of results.")]
    35   [StorableClass]
     35  [StorableType("AAC0CE73-E492-48FB-9645-7AC282ECD860")]
    3636  public class ResultsCollector : ValuesCollector {
    3737    public ValueLookupParameter<ResultCollection> ResultsParameter {
     
    4848
    4949    [StorableConstructor]
    50     protected ResultsCollector(bool deserializing) : base(deserializing) { }
     50    protected ResultsCollector(StorableConstructorFlag _) : base(_) { }
    5151    protected ResultsCollector(ResultsCollector original, Cloner cloner) : base(original, cloner) { }
    5252    public ResultsCollector()
Note: See TracChangeset for help on using the changeset viewer.