Changeset 14227
- Timestamp:
- 08/02/16 16:21:42 (8 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.NSGA2/3.3/NSGA2.cs
r14185 r14227 39 39 /// </summary> 40 40 [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)] 42 42 [StorableClass] 43 43 public class NSGA2 : HeuristicOptimizationEngineAlgorithm, IStorableContent { -
trunk/sources/HeuristicLab.Algorithms.RandomSearch/3.3/RandomSearchAlgorithm.cs
r14185 r14227 36 36 namespace HeuristicLab.Algorithms.RandomSearch { 37 37 [Item("Random Search Algorithm (RS)", "A random search algorithm.")] 38 [Creatable(CreatableAttribute.Categories. Algorithms, Priority = 150)]38 [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms, Priority = 150)] 39 39 [StorableClass] 40 40 public sealed class RandomSearchAlgorithm : HeuristicOptimizationEngineAlgorithm, IStorableContent {
Note: See TracChangeset
for help on using the changeset viewer.