Changeset 14927 for branches/PersistenceReintegration/HeuristicLab.Problems.GeneticProgramming/3.3/Boolean
- Timestamp:
- 05/04/17 17:19:35 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Problems.GeneticProgramming/3.3/Boolean
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Problems.GeneticProgramming/3.3/Boolean/EvenParityProblem.cs
r14185 r14927 28 28 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 29 29 using HeuristicLab.Parameters; 30 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;30 using HeuristicLab.Persistence; 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("6fa3fdae-9482-466f-8c87-9cc77c2c2ff1")] 37 37 public sealed class EvenParityProblem : SymbolicExpressionTreeProblem { 38 38 -
branches/PersistenceReintegration/HeuristicLab.Problems.GeneticProgramming/3.3/Boolean/MultiplexerProblem.cs
r14185 r14927 29 29 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 30 30 using HeuristicLab.Parameters; 31 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;31 using HeuristicLab.Persistence; 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("d6062590-6916-4a32-9ab3-1d0b33079e5f")] 39 39 public sealed class MultiplexerProblem : SymbolicExpressionTreeProblem { 40 40
Note: See TracChangeset
for help on using the changeset viewer.