- Timestamp:
- 01/28/19 13:41:42 (6 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration (added) merged: 16451-16454,16462,16465-16468,16470-16472,16474,16476-16477,16479-16487,16529-16530,16539,16551-16555,16558-16559,16562-16564
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Problems.GeneticProgramming/3.3/ArtificialAnt/Interpreter.cs
r15583 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
trunk/HeuristicLab.Problems.GeneticProgramming/3.3/ArtificialAnt/Problem.cs
r15583 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 29 29 using HeuristicLab.Optimization; 30 30 using HeuristicLab.Parameters; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 32 32 33 33 … … 35 35 [Item("Artificial Ant Problem", "Represents the Artificial Ant problem.")] 36 36 [Creatable(CreatableAttribute.Categories.GeneticProgrammingProblems, Priority = 170)] 37 [Storable Class]37 [StorableType("D365171B-7077-4CC2-835C-1827EA67C843")] 38 38 public sealed class Problem : SymbolicExpressionTreeProblem, IStorableContent { 39 39 … … 105 105 // persistence 106 106 [StorableConstructor] 107 private Problem( bool deserializing) : base(deserializing) { }107 private Problem(StorableConstructorFlag _) : base(_) { } 108 108 [StorableHook(HookType.AfterDeserialization)] 109 109 private void AfterDeserialization() { } -
trunk/HeuristicLab.Problems.GeneticProgramming/3.3/ArtificialAnt/Trail.cs
r15583 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 25 25 using HeuristicLab.Data; 26 26 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Problems.GeneticProgramming.ArtificialAnt { … … 32 32 /// </summary> 33 33 [Item("AntTrail", "Represents a trail of an artificial ant which can be visualized in the GUI.")] 34 [Storable Class]34 [StorableType("6C666B13-1A69-4924-9ED7-4AC06151FDC6")] 35 35 public sealed class Solution : Item { 36 36 public static new Image StaticItemImage { … … 55 55 #region item cloning and persistence 56 56 [StorableConstructor] 57 private Solution( bool deserializing) : base(deserializing) { }57 private Solution(StorableConstructorFlag _) : base(_) { } 58 58 [StorableHook(HookType.AfterDeserialization)] 59 59 private void AfterDeserialization() { }
Note: See TracChangeset
for help on using the changeset viewer.