Changeset 16723 for branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.ParameterlessPopulationPyramid/3.3/HillClimber.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.Algorithms.ParameterlessPopulationPyramid/3.3/HillClimber.cs
r16692 r16723 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 * and the BEACON Center for the Study of Evolution in Action. 5 5 * … … 31 31 using HeuristicLab.Optimization; 32 32 using HeuristicLab.Parameters; 33 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;33 using HEAL.Attic; 34 34 using HeuristicLab.Random; 35 35 … … 40 40 // and the original source code in C++11 available from: https://github.com/brianwgoldman/Parameter-less_Population_Pyramid 41 41 [Item("Hill Climber (HC)", "Binary Hill Climber.")] 42 [Storable Class]42 [StorableType("BA349010-6295-406E-8989-B271FB96ED86")] 43 43 [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms, Priority = 150)] 44 44 public class HillClimber : BasicAlgorithm { … … 81 81 82 82 [StorableConstructor] 83 protected HillClimber( bool deserializing) : base(deserializing) { }83 protected HillClimber(StorableConstructorFlag _) : base(_) { } 84 84 protected HillClimber(HillClimber original, Cloner cloner) 85 85 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.