Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.0/HeuristicLab.Operators/3.3/SubScopesProcessor.cs @ 17185

Last change on this file since 17185 was 3710, checked in by gkronber, 14 years ago

Implemented reviewer comments. #893 (HeuristicLab 3.3.0 application review)

File size: 3.7 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 System.Linq;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Parameters;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28using System.Collections.Generic;
29using System;
30
31namespace HeuristicLab.Operators {
32  /// <summary>
33  /// An operator which contains multiple operators of which each is applied on one sub-scope at the given depth of the current scope. The first operator is applied on the first sub-scope, the second on the second, and so on.
34  /// </summary>
35  [Item("SubScopesProcessor", "An operator which contains multiple operators of which each is applied on one sub-scope at the given depth of the current scope. The first operator is applied on the first sub-scope, the second on the second, and so on.")]
36  [StorableClass]
37  public sealed class SubScopesProcessor : MultiOperator<IOperator> {
38    public ValueLookupParameter<BoolValue> ParallelParameter {
39      get { return (ValueLookupParameter<BoolValue>)Parameters["Parallel"]; }
40    }
41    public ValueParameter<IntValue> DepthParameter {
42      get { return (ValueParameter<IntValue>)Parameters["Depth"]; }
43    }
44
45    public BoolValue Parallel {
46      get { return ParallelParameter.Value; }
47      set { ParallelParameter.Value = value; }
48    }
49    public IntValue Depth {
50      get { return DepthParameter.Value; }
51      set { DepthParameter.Value = value; }
52    }
53
54    public SubScopesProcessor()
55      : base() {
56      Parameters.Add(new ValueLookupParameter<BoolValue>("Parallel", "True if the operators should be applied in parallel on the sub-scopes, otherwise false.", new BoolValue(false)));
57      Parameters.Add(new ValueParameter<IntValue>("Depth", "The number of steps to descend in the scope tree before applying operator.", new IntValue(1)));
58    }
59
60    public override IOperation Apply() {
61      List<IScope> scopes = GetScopesOnLevel(ExecutionContext.Scope, Depth.Value).ToList();
62      OperationCollection next = new OperationCollection(base.Apply());
63      if (scopes.Count != Operators.Count)
64        throw new ArgumentException("The number of operators doesn't match the number of sub-scopes at depth " + Depth.Value);
65      OperationCollection inner = new OperationCollection();
66      inner.Parallel = Parallel == null ? false : Parallel.Value;
67      for (int i = 0; i < scopes.Count(); i++) {
68        inner.Add(ExecutionContext.CreateOperation(Operators[i], scopes[i]));
69      }
70      next.Insert(0, inner);
71      return next;
72    }
73
74    private IEnumerable<IScope> GetScopesOnLevel(IScope scope, int d) {
75      if (d == 0) yield return scope;
76      else {
77        foreach (IScope subScope in scope.SubScopes) {
78          foreach (IScope scopesOfSubScope in GetScopesOnLevel(subScope, d - 1)) {
79            yield return scopesOfSubScope;
80          }
81        }
82      }
83    }
84  }
85}
Note: See TracBrowser for help on using the repository browser.