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
Location:
branches/2520_PersistenceReintegration/HeuristicLab.DebugEngine/3.3
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/2520_PersistenceReintegration/HeuristicLab.DebugEngine/3.3/DebugEngine.cs

    r16453 r16462  
    2525using HeuristicLab.Common;
    2626using HeuristicLab.Core;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Fossil;
    2828
    2929namespace HeuristicLab.DebugEngine {
    3030
    31   [StorableClass]
     31  [StorableType("BC1A9855-D280-4314-A272-CD2120679F12")]
    3232  [Item("Debug Engine", "Engine for debugging algorithms.")]
    3333  public class DebugEngine : Executable, IEngine {
     
    3636
    3737    [StorableConstructor]
    38     protected DebugEngine(bool deserializing)
    39       : base(deserializing) {
     38    protected DebugEngine(StorableConstructorFlag _) : base(_) {
    4039      InitializeTimer();
    4140    }
  • branches/2520_PersistenceReintegration/HeuristicLab.DebugEngine/3.3/ExecutionStack.cs

    r16453 r16462  
    2525using HeuristicLab.Common;
    2626using HeuristicLab.Core;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Fossil;
    2828
    2929namespace HeuristicLab.DebugEngine {
    3030
    31   [StorableClass]
     31  [StorableType("FE481B4B-BA25-4889-AAC7-6C88D852D971")]
    3232  public class ExecutionStack : ObservableList<IOperation>, IContent, IDeepCloneable {
    3333
     
    3737
    3838    [StorableConstructor]
    39     protected ExecutionStack(bool deserializing) : base(deserializing) { }
     39    protected ExecutionStack(StorableConstructorFlag _) : base(_) { }
    4040    protected ExecutionStack(ExecutionStack original, Cloner cloner) {
    4141      cloner.RegisterClonedObject(original, this);
  • branches/2520_PersistenceReintegration/HeuristicLab.DebugEngine/3.3/HeuristicLab.DebugEngine-3.3.csproj

    r16454 r16462  
    9292      <HintPath>..\..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath>
    9393    </Reference>
    94     <Reference Include="HEAL.Fossil, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
     94    <Reference Include="HEAL.Fossil, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
    9595      <HintPath>..\..\packages\HEAL.Fossil.1.0.0\lib\netstandard2.0\HEAL.Fossil.dll</HintPath>
    9696    </Reference>
  • branches/2520_PersistenceReintegration/HeuristicLab.DebugEngine/3.3/OperatorTrace.cs

    r16453 r16462  
    2626using HeuristicLab.Common;
    2727using HeuristicLab.Core;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Fossil;
    2929
    3030namespace HeuristicLab.DebugEngine {
    3131
    32   [StorableClass]
     32  [StorableType("F694C6E8-39EC-4705-AB77-D00147A4D542")]
    3333  public class OperatorTrace : ObservableList<IOperator>, IContent, IDeepCloneable {
    3434
     
    6868
    6969    [StorableConstructor]
    70     protected OperatorTrace(bool deserializing) : base(deserializing) { }
     70    protected OperatorTrace(StorableConstructorFlag _) : base(_) { }
    7171
    7272    protected OperatorTrace(OperatorTrace original, Cloner cloner) {
Note: See TracChangeset for help on using the changeset viewer.