- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- 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 25 25 using HeuristicLab.Common; 26 26 using HeuristicLab.Core; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Fossil; 28 28 29 29 namespace HeuristicLab.DebugEngine { 30 30 31 [Storable Class]31 [StorableType("BC1A9855-D280-4314-A272-CD2120679F12")] 32 32 [Item("Debug Engine", "Engine for debugging algorithms.")] 33 33 public class DebugEngine : Executable, IEngine { … … 36 36 37 37 [StorableConstructor] 38 protected DebugEngine(bool deserializing) 39 : base(deserializing) { 38 protected DebugEngine(StorableConstructorFlag _) : base(_) { 40 39 InitializeTimer(); 41 40 } -
branches/2520_PersistenceReintegration/HeuristicLab.DebugEngine/3.3/ExecutionStack.cs
r16453 r16462 25 25 using HeuristicLab.Common; 26 26 using HeuristicLab.Core; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Fossil; 28 28 29 29 namespace HeuristicLab.DebugEngine { 30 30 31 [Storable Class]31 [StorableType("FE481B4B-BA25-4889-AAC7-6C88D852D971")] 32 32 public class ExecutionStack : ObservableList<IOperation>, IContent, IDeepCloneable { 33 33 … … 37 37 38 38 [StorableConstructor] 39 protected ExecutionStack( bool deserializing) : base(deserializing) { }39 protected ExecutionStack(StorableConstructorFlag _) : base(_) { } 40 40 protected ExecutionStack(ExecutionStack original, Cloner cloner) { 41 41 cloner.RegisterClonedObject(original, this); -
branches/2520_PersistenceReintegration/HeuristicLab.DebugEngine/3.3/HeuristicLab.DebugEngine-3.3.csproj
r16454 r16462 92 92 <HintPath>..\..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath> 93 93 </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"> 95 95 <HintPath>..\..\packages\HEAL.Fossil.1.0.0\lib\netstandard2.0\HEAL.Fossil.dll</HintPath> 96 96 </Reference> -
branches/2520_PersistenceReintegration/HeuristicLab.DebugEngine/3.3/OperatorTrace.cs
r16453 r16462 26 26 using HeuristicLab.Common; 27 27 using HeuristicLab.Core; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Fossil; 29 29 30 30 namespace HeuristicLab.DebugEngine { 31 31 32 [Storable Class]32 [StorableType("F694C6E8-39EC-4705-AB77-D00147A4D542")] 33 33 public class OperatorTrace : ObservableList<IOperator>, IContent, IDeepCloneable { 34 34 … … 68 68 69 69 [StorableConstructor] 70 protected OperatorTrace( bool deserializing) : base(deserializing) { }70 protected OperatorTrace(StorableConstructorFlag _) : base(_) { } 71 71 72 72 protected OperatorTrace(OperatorTrace original, Cloner cloner) {
Note: See TracChangeset
for help on using the changeset viewer.