Changeset 12080 for branches/ALPS/HeuristicLab.Operators/3.3
- Timestamp:
- 02/26/15 12:44:13 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ALPS/HeuristicLab.Operators/3.3/UniformSubScopesProcessor.cs
r12035 r12080 34 34 [Item("UniformSubScopesProcessor", "An operator which applies a specified operator on all sub-scopes at the given depth of the current scope.")] 35 35 [StorableClass] 36 public class UniformSubScopesProcessor : SingleSuccessorOperator {36 public sealed class UniformSubScopesProcessor : SingleSuccessorOperator { 37 37 private OperatorParameter OperatorParameter { 38 38 get { return (OperatorParameter)Parameters["Operator"]; } … … 59 59 60 60 [StorableConstructor] 61 pr otectedUniformSubScopesProcessor(bool deserializing) : base(deserializing) { }62 pr otectedUniformSubScopesProcessor(UniformSubScopesProcessor original, Cloner cloner)61 private UniformSubScopesProcessor(bool deserializing) : base(deserializing) { } 62 private UniformSubScopesProcessor(UniformSubScopesProcessor original, Cloner cloner) 63 63 : base(original, cloner) { 64 64 } … … 88 88 } 89 89 90 pr otectedIEnumerable<IScope> GetScopesOnLevel(IScope scope, int d) {90 private IEnumerable<IScope> GetScopesOnLevel(IScope scope, int d) { 91 91 if (d == 0) yield return scope; 92 92 else {
Note: See TracChangeset
for help on using the changeset viewer.