Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ALPS/HeuristicLab.Algorithms.ALPS.SteadyState/3.3/NamedSubScopeProcessor.cs @ 12157

Last change on this file since 12157 was 12157, checked in by pfleck, 9 years ago

#2350

  • Added a NamedSubScopeProcessor to process an name Scope (created by the NamedSubScopesCreator).
  • Changed the Steady-State ALPS to use the new Processor.
File size: 2.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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.Operators;
26using HeuristicLab.Parameters;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29
30namespace HeuristicLab.Algorithms.ALPS.SteadyState {
31  [Item("NamedSubScopeProcessor", "")]
32  [StorableClass]
33  public class NamedSubScopeProcessor : SingleSuccessorOperator {
34
35    #region Parameter Properties
36    private OperatorParameter OperatorParameter {
37      get { return (OperatorParameter)Parameters["Operator"]; }
38    }
39    public ILookupParameter<IScope> TargetScopeParameter {
40      get { return (ILookupParameter<IScope>)Parameters["TargetScope"]; }
41    }
42    #endregion
43
44    public IOperator Operator {
45      get { return OperatorParameter.Value; }
46      set { OperatorParameter.Value = value; }
47    }
48
49    [StorableConstructor]
50    protected NamedSubScopeProcessor(bool deserializing) : base(deserializing) { }
51    public NamedSubScopeProcessor()
52      : base() {
53      Parameters.Add(new OperatorParameter("Operator", "The operator which should be applied on all sub-scopes of the current scope."));
54      Parameters.Add(new LookupParameter<IScope>("TargetScope"));
55    }
56    protected NamedSubScopeProcessor(NamedSubScopeProcessor original, Cloner cloner)
57      : base(original, cloner) {
58    }
59    public override IDeepCloneable Clone(Cloner cloner) {
60      return new NamedSubScopeProcessor(this, cloner);
61    }
62
63    public override IOperation Apply() {
64      var next = new OperationCollection(base.Apply());
65      var targetScope = TargetScopeParameter.ActualValue;
66      next.Insert(0, ExecutionContext.CreateOperation(Operator, targetScope));
67      return next;
68    }
69  }
70}
Note: See TracBrowser for help on using the repository browser.