Changeset 16723 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.Binary/3.3/DeceptiveTrapProblem.cs
- Timestamp:
- 03/28/19 16:54:20 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.Binary/3.3/DeceptiveTrapProblem.cs
r16692 r16723 2 2 3 3 /* HeuristicLab 4 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 5 5 * 6 6 * This file is part of HeuristicLab. … … 28 28 using HeuristicLab.Encodings.BinaryVectorEncoding; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Attic; 31 31 32 32 namespace HeuristicLab.Problems.Binary { 33 33 [Item("Deceptive Trap Problem", "Genome encodes completely separable blocks, where each block is fully deceptive.")] 34 [Storable Class]34 [StorableType("399FFE01-2B76-4DBF-B363-8BB65FE95A5D")] 35 35 [Creatable(CreatableAttribute.Categories.CombinatorialProblems, Priority = 230)] 36 36 public class DeceptiveTrapProblem : BinaryProblem { 37 37 [StorableConstructor] 38 protected DeceptiveTrapProblem( bool deserializing) : base(deserializing) { }38 protected DeceptiveTrapProblem(StorableConstructorFlag _) : base(_) { } 39 39 protected DeceptiveTrapProblem(DeceptiveTrapProblem original, Cloner cloner) 40 40 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.