Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 2995 was 2994, checked in by epitzer, 14 years ago

Make StorableClass attribute compulsory for StorableSerializer to work, add named property StorableClassType to choose between Empty and MarkedOnly, later other options will be added. (#548)

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.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(StorableClassType.Empty)]
33  [Creatable("Test")]
34  public sealed class SubScopesSorter : SingleSuccessorOperator {
35    private bool descending;
36    private string actualName;
37
38    public SubScopesLookupParameter<DoubleData> ValueParameter {
39      get { return (SubScopesLookupParameter<DoubleData>)Parameters["Value"]; }
40    }
41    public ValueLookupParameter<BoolData> DescendingParameter {
42      get { return (ValueLookupParameter<BoolData>)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 SubScopesLookupParameter<DoubleData>("Value", "The values contained in each sub-scope acording which the sub-scopes of the current scope are sorted."));
54      Parameters.Add(new ValueLookupParameter<BoolData>("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<DoubleData>>.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 = ((DoubleData)var1.Value).CompareTo((DoubleData)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.