Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Operators/3.3/SubScopesSorter.cs @ 3189

Last change on this file since 3189 was 3160, checked in by swagner, 14 years ago

Removed Creatable test attribute (#935).

File size: 3.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using HeuristicLab.Core;
23using HeuristicLab.Data;
24using HeuristicLab.Parameters;
25using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
26
27namespace HeuristicLab.Operators {
28  /// <summary>
29  /// An Operator which sorts the sub-scopes of the current scope.
30  /// </summary>
31  [Item("SubScopesSorter", "An operator which sorts the sub-scopes of the current scope.")]
32  [StorableClass]
33  public sealed class SubScopesSorter : SingleSuccessorOperator {
34    private bool descending;
35    private string actualName;
36
37    public SubScopesLookupParameter<DoubleValue> ValueParameter {
38      get { return (SubScopesLookupParameter<DoubleValue>)Parameters["Value"]; }
39    }
40    public ValueLookupParameter<BoolValue> DescendingParameter {
41      get { return (ValueLookupParameter<BoolValue>)Parameters["Descending"]; }
42    }
43    private ScopeParameter CurrentScopeParameter {
44      get { return (ScopeParameter)Parameters["CurrentScope"]; }
45    }
46    public IScope CurrentScope {
47      get { return CurrentScopeParameter.ActualValue; }
48    }
49
50    public SubScopesSorter()
51      : base() {
52      Parameters.Add(new SubScopesLookupParameter<DoubleValue>("Value", "The values contained in each sub-scope acording which the sub-scopes of the current scope are sorted."));
53      Parameters.Add(new ValueLookupParameter<BoolValue>("Descending", "True if the sub-scopes should be sorted in descending order, otherwise false."));
54      Parameters.Add(new ScopeParameter("CurrentScope", "The current scope whose sub-scopes are sorted."));
55    }
56
57    public override IOperation Apply() {
58      descending = DescendingParameter.ActualValue.Value;
59      actualName = LookupParameter<ItemArray<DoubleValue>>.TranslateName(ValueParameter.Name, ExecutionContext);
60      CurrentScope.SubScopes.Sort(SortScopes);
61      return base.Apply();
62    }
63
64    private int SortScopes(IScope x, IScope y) {
65      IVariable var1;
66      IVariable var2;
67      x.Variables.TryGetValue(actualName, out var1);
68      y.Variables.TryGetValue(actualName, out var2);
69      if ((var1 == null) && (var2 == null))
70        return 0;
71      else if ((var1 == null) && (var2 != null))
72        return 1;
73      else if ((var1 != null) && (var2 == null))
74        return -1;
75      else {
76        int result = ((DoubleValue)var1.Value).CompareTo((DoubleValue)var2.Value);
77        if (descending) result = result * -1;
78        return result;
79      }
80    }
81  }
82}
Note: See TracBrowser for help on using the repository browser.