Changeset 13368 for branches/PersistenceOverhaul/HeuristicLab.Algorithms.ParameterlessPopulationPyramid/3.3
- Timestamp:
- 11/24/15 17:08:13 (9 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Algorithms.ParameterlessPopulationPyramid/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Algorithms.ParameterlessPopulationPyramid/3.3/HillClimber.cs
r13173 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 38 38 namespace HeuristicLab.Algorithms.ParameterlessPopulationPyramid { 39 39 // This code is based off the publication 40 // B. W. Goldman and W. F. Punch, "Parameter-less Population Pyramid," GECCO, pp. 785 –792, 201440 // B. W. Goldman and W. F. Punch, "Parameter-less Population Pyramid," GECCO, pp. 785â792, 2014 41 41 // and the original source code in C++11 available from: https://github.com/brianwgoldman/Parameter-less_Population_Pyramid 42 42 [Item("Hill Climber (HC)", "Binary Hill Climber.")] 43 [StorableClass ]43 [StorableClass("0C83F225-4DCA-4FF2-800D-A2BDDB5AD2E5")] 44 44 [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms, Priority = 150)] 45 45 public class HillClimber : BasicAlgorithm { -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.ParameterlessPopulationPyramid/3.3/ParameterlessPopulationPyramid.cs
r13173 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 37 37 namespace HeuristicLab.Algorithms.ParameterlessPopulationPyramid { 38 38 // This code is based off the publication 39 // B. W. Goldman and W. F. Punch, "Parameter-less Population Pyramid," GECCO, pp. 785 –792, 201439 // B. W. Goldman and W. F. Punch, "Parameter-less Population Pyramid," GECCO, pp. 785â792, 2014 40 40 // and the original source code in C++11 available from: https://github.com/brianwgoldman/Parameter-less_Population_Pyramid 41 [Item("Parameter-less Population Pyramid (P3)", "Binary value optimization algorithm which requires no configuration. B. W. Goldman and W. F. Punch, Parameter-less Population Pyramid, GECCO, pp. 785 –792, 2014")]42 [StorableClass ]41 [Item("Parameter-less Population Pyramid (P3)", "Binary value optimization algorithm which requires no configuration. B. W. Goldman and W. F. Punch, Parameter-less Population Pyramid, GECCO, pp. 785â792, 2014")] 42 [StorableClass("90E4FEAD-A69F-449D-88FA-36A9217453AE")] 43 43 [Creatable(CreatableAttribute.Categories.PopulationBasedAlgorithms, Priority = 400)] 44 44 public class ParameterlessPopulationPyramid : BasicAlgorithm {
Note: See TracChangeset
for help on using the changeset viewer.