Changeset 3659 for trunk/sources/HeuristicLab.Operators
- Timestamp:
- 05/06/10 00:47:32 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators/3.3/SubScopesSorter.cs
r3376 r3659 36 36 private string actualName; 37 37 38 public S ubScopesLookupParameter<DoubleValue> ValueParameter {39 get { return (S ubScopesLookupParameter<DoubleValue>)Parameters["Value"]; }38 public ScopeTreeLookupParameter<DoubleValue> ValueParameter { 39 get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["Value"]; } 40 40 } 41 41 public ValueLookupParameter<BoolValue> DescendingParameter { … … 51 51 public SubScopesSorter() 52 52 : base() { 53 Parameters.Add(new S ubScopesLookupParameter<DoubleValue>("Value", "The values contained in each sub-scope acording which the sub-scopes of the current scope are sorted."));53 Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Value", "The values contained in each sub-scope acording which the sub-scopes of the current scope are sorted.")); 54 54 Parameters.Add(new ValueLookupParameter<BoolValue>("Descending", "True if the sub-scopes should be sorted in descending order, otherwise false.")); 55 55 Parameters.Add(new ScopeParameter("CurrentScope", "The current scope whose sub-scopes are sorted."));
Note: See TracChangeset
for help on using the changeset viewer.