Changeset 11590 for branches/ALPS/HeuristicLab.Operators
- Timestamp:
- 11/26/14 17:22:19 (10 years ago)
- Location:
- branches/ALPS/HeuristicLab.Operators/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ALPS/HeuristicLab.Operators/3.3/FirstSubScopeProcessor.cs
r11586 r11590 29 29 namespace HeuristicLab.Operators { 30 30 [Item("FirstSubScopeProsessor", "An operator which applies a specified operator on the first sub-scope.")] 31 public class FirstSubScopeProcessor : SingleSuccessorOperator { 31 [StorableClass] 32 public sealed class FirstSubScopeProcessor : SingleSuccessorOperator { 32 33 private OperatorParameter OperatorParameter { 33 34 get { return (OperatorParameter)Parameters["Operator"]; } -
branches/ALPS/HeuristicLab.Operators/3.3/LastSubScopeProcessor.cs
r11586 r11590 29 29 namespace HeuristicLab.Operators { 30 30 [Item("LastSubScopeProsessor", "An operator which applies a specified operator on the last sub-scope.")] 31 public class LastSubScopeProcessor : SingleSuccessorOperator { 31 [StorableClass] 32 public sealed class LastSubScopeProcessor : SingleSuccessorOperator { 32 33 private OperatorParameter OperatorParameter { 33 34 get { return (OperatorParameter)Parameters["Operator"]; }
Note: See TracChangeset
for help on using the changeset viewer.