Free cookie consent management tool by TermsFeed Policy Generator

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

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

Worked on refactoring of algorithm analysis and tracing (#999)

  • removed SubScopesSubScopesLookupParameter
  • adapted SubScopesLookupParameter and renamed it into ScopeTreeLookupParameter
File size: 3.3 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.Common;
23using HeuristicLab.Core;
24using HeuristicLab.Data;
25using HeuristicLab.Parameters;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27
28namespace HeuristicLab.Operators {
29  /// <summary>
30  /// An Operator which sorts the sub-scopes of the current scope.
31  /// </summary>
32  [Item("SubScopesSorter", "An operator which sorts the sub-scopes of the current scope.")]
33  [StorableClass]
34  public sealed class SubScopesSorter : SingleSuccessorOperator {
35    private bool descending;
36    private string actualName;
37
38    public ScopeTreeLookupParameter<DoubleValue> ValueParameter {
39      get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["Value"]; }
40    }
41    public ValueLookupParameter<BoolValue> DescendingParameter {
42      get { return (ValueLookupParameter<BoolValue>)Parameters["Descending"]; }
43    }
44    private ScopeParameter CurrentScopeParameter {
45      get { return (ScopeParameter)Parameters["CurrentScope"]; }
46    }
47    public IScope CurrentScope {
48      get { return CurrentScopeParameter.ActualValue; }
49    }
50
51    public SubScopesSorter()
52      : base() {
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      Parameters.Add(new ValueLookupParameter<BoolValue>("Descending", "True if the sub-scopes should be sorted in descending order, otherwise false."));
55      Parameters.Add(new ScopeParameter("CurrentScope", "The current scope whose sub-scopes are sorted."));
56    }
57
58    public override IOperation Apply() {
59      descending = DescendingParameter.ActualValue.Value;
60      actualName = LookupParameter<ItemArray<DoubleValue>>.TranslateName(ValueParameter.Name, ExecutionContext);
61      CurrentScope.SubScopes.Sort(SortScopes);
62      return base.Apply();
63    }
64
65    private int SortScopes(IScope x, IScope y) {
66      IVariable var1;
67      IVariable var2;
68      x.Variables.TryGetValue(actualName, out var1);
69      y.Variables.TryGetValue(actualName, out var2);
70      if ((var1 == null) && (var2 == null))
71        return 0;
72      else if ((var1 == null) && (var2 != null))
73        return 1;
74      else if ((var1 != null) && (var2 == null))
75        return -1;
76      else {
77        int result = ((DoubleValue)var1.Value).CompareTo((DoubleValue)var2.Value);
78        if (descending) result = result * -1;
79        return result;
80      }
81    }
82  }
83}
Note: See TracBrowser for help on using the repository browser.