Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (5 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.Clients.OKB/3.3/RunCreation/EmptyAlgorithm.cs

    r16453 r16462  
    2424using HeuristicLab.Core;
    2525using HeuristicLab.Optimization;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Fossil;
    2727using HeuristicLab.PluginInfrastructure;
    2828
    2929namespace HeuristicLab.Clients.OKB.RunCreation {
    3030  [Item("Empty Algorithm", "A dummy algorithm which serves as a placeholder and cannot be executed.")]
    31   [StorableClass]
     31  [StorableType("C98C8322-5A78-4518-A94D-FA20F12AB8D3")]
    3232  [NonDiscoverableType]
    3333  public sealed class EmptyAlgorithm : HeuristicLab.Optimization.Algorithm {
     
    5555
    5656    [StorableConstructor]
    57     private EmptyAlgorithm(bool deserializing)
    58       : base(deserializing) {
     57    private EmptyAlgorithm(StorableConstructorFlag _) : base(_) {
    5958      this.results = new ResultCollection();
    6059    }
Note: See TracChangeset for help on using the changeset viewer.