Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/10/15 12:11:55 (9 years ago)
Author:
mkommend
Message:

#2025:Merged all changes regarding the new item dialog into stable.
#2387: Merged all changes regarding the type selector into stable.

Location:
stable
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Problems.Binary/3.3/DeceptiveStepTrapProblem.cs

    r11987 r12708  
    3232  [Item("Deceptive Step Trap Problem", "Genome encodes completely separable blocks, where each block deceptive with fitness plateaus.")]
    3333  [StorableClass]
    34   [Creatable("Problems")]
     34  [Creatable(CreatableAttribute.Categories.CombinatorialProblems, Priority = 230)]
    3535  public class DeceptiveStepTrapProblem : DeceptiveTrapProblem {
    3636    [StorableConstructor]
  • stable/HeuristicLab.Problems.Binary/3.3/DeceptiveTrapProblem.cs

    r12005 r12708  
    3333  [Item("Deceptive Trap Problem", "Genome encodes completely separable blocks, where each block is fully deceptive.")]
    3434  [StorableClass]
    35   [Creatable("Problems")]
     35  [Creatable(CreatableAttribute.Categories.CombinatorialProblems, Priority = 230)]
    3636  public class DeceptiveTrapProblem : BinaryProblem {
    3737    [StorableConstructor]
  • stable/HeuristicLab.Problems.Binary/3.3/HIFFProblem.cs

    r12005 r12708  
    3131  [Item("Hierararchical If and only If problem", "Genome evaluated in nested subsets to see if each subset contains either all 0s or all 1s.")]
    3232  [StorableClass]
    33   [Creatable("Problems")]
     33  [Creatable(CreatableAttribute.Categories.CombinatorialProblems, Priority = 220)]
    3434  public class HIFFProblem : BinaryProblem {
    3535    [StorableConstructor]
     
    4848    public HIFFProblem()
    4949      : base() {
    50         Encoding.Length = 64;
     50      Encoding.Length = 64;
    5151    }
    5252    // In the GECCO paper, Section 4.1
  • stable/HeuristicLab.Problems.Binary/3.3/OneMaxProblem.cs

    r12009 r12708  
    2525using HeuristicLab.Core;
    2626using HeuristicLab.Encodings.BinaryVectorEncoding;
    27 using HeuristicLab.Optimization;
    2827using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2928
    3029namespace HeuristicLab.Problems.Binary {
    3130  [Item("One Max Problem", "Represents a problem whose objective is to maximize the number of true values.")]
    32   [Creatable("Problems")]
     31  [Creatable(CreatableAttribute.Categories.CombinatorialProblems, Priority = 210)]
    3332  [StorableClass]
    3433  public class OneMaxProblem : BinaryProblem {
Note: See TracChangeset for help on using the changeset viewer.