- Timestamp:
- 01/28/19 13:41:42 (6 years ago)
- Location:
- trunk
- Files:
-
- 3 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/Boolean/EvenParityProblem.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. … … 28 28 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Attic; 31 31 32 32 … … 34 34 [Item("Even Parity Problem", "The Boolean even parity genetic programming problem. See Koza, 1992, page 529 section 20.2 Symbolic Regression of Even-Parity Functions")] 35 35 [Creatable(CreatableAttribute.Categories.GeneticProgrammingProblems, Priority = 900)] 36 [Storable Class]36 [StorableType("76D6001D-135F-45FB-BC79-061EDAEE33A9")] 37 37 public sealed class EvenParityProblem : SymbolicExpressionTreeProblem { 38 38 … … 61 61 // persistence 62 62 [StorableConstructor] 63 private EvenParityProblem( bool deserializing) : base(deserializing) { }63 private EvenParityProblem(StorableConstructorFlag _) : base(_) { } 64 64 [StorableHook(HookType.AfterDeserialization)] 65 65 private void AfterDeserialization() { -
trunk/HeuristicLab.Problems.GeneticProgramming/3.3/Boolean/MultiplexerProblem.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.Encodings.SymbolicExpressionTreeEncoding; 30 30 using HeuristicLab.Parameters; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 32 32 33 33 … … 36 36 "The Boolean multiplexer genetic programming problem. See Koza 1992, page 171, section 7.4.1 11-multiplexer.")] 37 37 [Creatable(CreatableAttribute.Categories.GeneticProgrammingProblems, Priority = 900)] 38 [Storable Class]38 [StorableType("6DFE64E4-3968-446F-AE3D-FAF13C18930C")] 39 39 public sealed class MultiplexerProblem : SymbolicExpressionTreeProblem { 40 40 … … 63 63 // persistence 64 64 [StorableConstructor] 65 private MultiplexerProblem( bool deserializing) : base(deserializing) { }65 private MultiplexerProblem(StorableConstructorFlag _) : base(_) { } 66 66 [StorableHook(HookType.AfterDeserialization)] 67 67 private void AfterDeserialization() {
Note: See TracChangeset
for help on using the changeset viewer.