Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/22/10 03:25:21 (14 years ago)
Author:
swagner
Message:

Removed Creatable test attribute (#935).

Location:
trunk/sources/HeuristicLab.Selection/3.3
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Selection/3.3/BestSelector.cs

    r3138 r3160  
    3333  [Item("BestSelector", "A selection operator which considers a single double quality value and selects the best.")]
    3434  [StorableClass]
    35   [Creatable("Test")]
    3635  public sealed class BestSelector : SingleObjectiveSelector, ISingleObjectiveSelector {
    3736    public BestSelector() : base() { }
  • trunk/sources/HeuristicLab.Selection/3.3/LeftReducer.cs

    r3138 r3160  
    3131  [Item("LeftReducer", "An operator which reduces to the sub-scopes of the leftmost sub-scope of the current scope.")]
    3232  [StorableClass]
    33   [Creatable("Test")]
    3433  public sealed class LeftReducer : Reducer, IReducer {
    3534    public LeftReducer() : base() { }
  • trunk/sources/HeuristicLab.Selection/3.3/LinearRankSelector.cs

    r3138 r3160  
    3333  [Item("LinearRankSelector", "A linear rank selection operator which considers the rank based on a single double quality value for selection.")]
    3434  [StorableClass]
    35   [Creatable("Test")]
    3635  public sealed class LinearRankSelector : StochasticSingleObjectiveSelector, ISingleObjectiveSelector {
    3736    public LinearRankSelector() : base() { }
  • trunk/sources/HeuristicLab.Selection/3.3/MergingReducer.cs

    r3138 r3160  
    3131  [Item("MergingReducer", "An operator which reduces to the sub-scopes of all sub-scopes of the current scope.")]
    3232  [StorableClass]
    33   [Creatable("Test")]
    3433  public sealed class MergingReducer : Reducer, IReducer {
    3534    public MergingReducer() : base() { }
  • trunk/sources/HeuristicLab.Selection/3.3/ProportionalSelector.cs

    r3138 r3160  
    3535  [Item("ProportionalSelector", "A quality proportional selection operator which considers a single double quality value for selection.")]
    3636  [StorableClass]
    37   [Creatable("Test")]
    3837  public sealed class ProportionalSelector : StochasticSingleObjectiveSelector, ISingleObjectiveSelector {
    3938    private ValueParameter<BoolValue> WindowingParameter {
  • trunk/sources/HeuristicLab.Selection/3.3/RandomSelector.cs

    r3129 r3160  
    3333  [Item("RandomSelector", "A random selection operator.")]
    3434  [StorableClass]
    35   [Creatable("Test")]
    3635  public sealed class RandomSelector : StochasticSelector, ISelector {
    3736    protected ValueParameter<BoolValue> CopySelectedParameter {
  • trunk/sources/HeuristicLab.Selection/3.3/RightReducer.cs

    r3138 r3160  
    3131  [Item("RightReducer", "An operator which reduces to the sub-scopes of the rightmost sub-scope of the current scope.")]
    3232  [StorableClass]
    33   [Creatable("Test")]
    3433  public sealed class RightReducer : Reducer, IReducer {
    3534    public RightReducer() : base() { }
  • trunk/sources/HeuristicLab.Selection/3.3/TournamentSelector.cs

    r3138 r3160  
    3434  [Item("TournamentSelector", "A tournament selection operator which considers a single double quality value for selection.")]
    3535  [StorableClass]
    36   [Creatable("Test")]
    3736  public sealed class TournamentSelector : StochasticSingleObjectiveSelector, ISingleObjectiveSelector {
    3837    public ValueLookupParameter<IntValue> GroupSizeParameter {
  • trunk/sources/HeuristicLab.Selection/3.3/WorstSelector.cs

    r3138 r3160  
    3333  [Item("WorstSelector", "A selection operator which considers a single double quality value and selects the worst.")]
    3434  [StorableClass]
    35   [Creatable("Test")]
    3635  public sealed class WorstSelector : SingleObjectiveSelector, ISingleObjectiveSelector {
    3736    public WorstSelector() : base() { }
Note: See TracChangeset for help on using the changeset viewer.