Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/24/15 17:08:13 (8 years ago)
Author:
ascheibe
Message:

#2520 added guids to storable classes

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 Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3838namespace HeuristicLab.Algorithms.ParameterlessPopulationPyramid {
    3939  // This code is based off the publication
    40   // B. W. Goldman and W. F. Punch, "Parameter-less Population Pyramid," GECCO, pp. 785792, 2014
     40  // B. W. Goldman and W. F. Punch, "Parameter-less Population Pyramid," GECCO, pp. 785–792, 2014
    4141  // and the original source code in C++11 available from: https://github.com/brianwgoldman/Parameter-less_Population_Pyramid
    4242  [Item("Hill Climber (HC)", "Binary Hill Climber.")]
    43   [StorableClass]
     43  [StorableClass("0C83F225-4DCA-4FF2-800D-A2BDDB5AD2E5")]
    4444  [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms, Priority = 150)]
    4545  public class HillClimber : BasicAlgorithm {
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.ParameterlessPopulationPyramid/3.3/ParameterlessPopulationPyramid.cs

    r13173 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3737namespace HeuristicLab.Algorithms.ParameterlessPopulationPyramid {
    3838  // This code is based off the publication
    39   // B. W. Goldman and W. F. Punch, "Parameter-less Population Pyramid," GECCO, pp. 785792, 2014
     39  // B. W. Goldman and W. F. Punch, "Parameter-less Population Pyramid," GECCO, pp. 785–792, 2014
    4040  // 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. 785792, 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")]
    4343  [Creatable(CreatableAttribute.Categories.PopulationBasedAlgorithms, Priority = 400)]
    4444  public class ParameterlessPopulationPyramid : BasicAlgorithm {
Note: See TracChangeset for help on using the changeset viewer.