Free cookie consent management tool by TermsFeed Policy Generator

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

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

Operator architecture refactoring (#95)

  • worked on parameters and operators
File size: 3.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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 System;
23using System.Collections.Generic;
24using System.Text;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27using HeuristicLab.Parameters;
28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29
30namespace HeuristicLab.Operators {
31  /// <summary>
32  /// An Operator which sorts the sub-scopes of the current scope.
33  /// </summary>
34  [Item("SubScopesSorter", "An operator which sorts the sub-scopes of the current scope.")]
35  [EmptyStorableClass]
36  [Creatable("Test")]
37  public sealed class SubScopesSorter : SingleSuccessorOperator {
38    private bool descending;
39    private string actualName;
40
41    public SubScopesLookupParameter<DoubleData> ValueParameter {
42      get { return (SubScopesLookupParameter<DoubleData>)Parameters["Value"]; }
43    }
44    public ValueLookupParameter<BoolData> DescendingParameter {
45      get { return (ValueLookupParameter<BoolData>)Parameters["Descending"]; }
46    }
47    protected ScopeParameter CurrentScopeParameter {
48      get { return (ScopeParameter)Parameters["CurrentScope"]; }
49    }
50    public IScope CurrentScope {
51      get { return CurrentScopeParameter.ActualValue; }
52    }
53
54    public SubScopesSorter()
55      : base() {
56      Parameters.Add(new SubScopesLookupParameter<DoubleData>("Value", "The values contained in each sub-scope acording which the sub-scopes of the current scope are sorted."));
57      Parameters.Add(new ValueLookupParameter<BoolData>("Descending", "True if the sub-scopes should be sorted in descending order, otherwise false."));
58      Parameters.Add(new ScopeParameter("CurrentScope", "The current scope whose sub-scopes are sorted."));
59    }
60
61    public override IExecutionContext Apply() {
62      descending = DescendingParameter.ActualValue.Value;
63      actualName = LookupParameter<DoubleData>.TranslateName(ValueParameter.Name, ExecutionContext);
64      CurrentScope.SubScopes.Sort(SortScopes);
65      return base.Apply();
66    }
67
68    private int SortScopes(IScope x, IScope y) {
69      IVariable var1;
70      IVariable var2;
71      x.Variables.TryGetValue(actualName, out var1);
72      x.Variables.TryGetValue(actualName, out var2);
73      if ((var1 == null) && (var2 == null))
74        return 0;
75      else if ((var1 == null) && (var2 != null))
76        return 1;
77      else if ((var1 != null) && (var2 == null))
78        return -1;
79      else {
80        int result = ((DoubleData)var1.Value).CompareTo((DoubleData)var2.Value);
81        if (descending) result = result * -1;
82        return result;
83      }
84    }
85  }
86}
Note: See TracBrowser for help on using the repository browser.