- Timestamp:
- 08/02/12 13:50:56 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators/3.3/SubScopesCounter.cs
r8364 r8386 27 27 28 28 namespace 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.")] 30 30 [StorableClass] 31 31 public class SubScopesCounter : SingleSuccessorOperator { … … 44 44 } 45 45 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.")); 47 47 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))); 48 48 }
Note: See TracChangeset
for help on using the changeset viewer.