Free cookie consent management tool by TermsFeed Policy Generator

Changeset 14227


Ignore:
Timestamp:
08/02/16 16:21:42 (8 years ago)
Author:
gkronber
Message:

#2640: moved NSGA-II to category: 'population-based algorithms' and moved random search to category: 'single-solution algorithms'

Location:
trunk/sources
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.NSGA2/3.3/NSGA2.cs

    r14185 r14227  
    3939  /// </summary>
    4040  [Item("NSGA-II", "The Nondominated Sorting Genetic Algorithm II was introduced in Deb et al. 2002. A Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II. IEEE Transactions on Evolutionary Computation, 6(2), pp. 182-197.")]
    41   [Creatable(CreatableAttribute.Categories.Algorithms, Priority = 100)]
     41  [Creatable(CreatableAttribute.Categories.PopulationBasedAlgorithms, Priority = 135)]
    4242  [StorableClass]
    4343  public class NSGA2 : HeuristicOptimizationEngineAlgorithm, IStorableContent {
  • trunk/sources/HeuristicLab.Algorithms.RandomSearch/3.3/RandomSearchAlgorithm.cs

    r14185 r14227  
    3636namespace HeuristicLab.Algorithms.RandomSearch {
    3737  [Item("Random Search Algorithm (RS)", "A random search algorithm.")]
    38   [Creatable(CreatableAttribute.Categories.Algorithms, Priority = 150)]
     38  [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms, Priority = 150)]
    3939  [StorableClass]
    4040  public sealed class RandomSearchAlgorithm : HeuristicOptimizationEngineAlgorithm, IStorableContent {
Note: See TracChangeset for help on using the changeset viewer.