Free cookie consent management tool by TermsFeed Policy Generator

Changeset 8386


Ignore:
Timestamp:
08/02/12 13:50:56 (12 years ago)
Author:
jkarder
Message:

#1906:

  • adapted item description
  • adapted parameter description
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators/3.3/SubScopesCounter.cs

    r8364 r8386  
    2727
    2828namespace HeuristicLab.Operators {
    29   [Item("SubScopesCounter", "Counts the number of direct sub-scopes and increments the value given in the parameter.")]
     29  [Item("SubScopesCounter", "Counts the number of direct sub-scopes and increments or assigns it to the value given in the parameter.")]
    3030  [StorableClass]
    3131  public class SubScopesCounter : SingleSuccessorOperator {
     
    4444    }
    4545    public SubScopesCounter() {
    46       Parameters.Add(new LookupParameter<IntValue>("Value", "The value that should be incremented by the number of direct sub-scopes. It will be created in the current scope if the value is not found."));
     46      Parameters.Add(new LookupParameter<IntValue>("Value", "The value that should be incremented by the number of direct sub-scopes. It will be created in the current scope if the value is not found. If Accumulate is set to false, the number of direct sub-scopes is assigned and not accumulated."));
    4747      Parameters.Add(new ValueParameter<BoolValue>("Accumulate", "True if the number of direct sub-scopes should be accumulated, false if the number should be assigned.", new BoolValue(true)));
    4848    }
Note: See TracChangeset for help on using the changeset viewer.