Changeset 3000 for trunk/sources/HeuristicLab.Operators
- Timestamp:
- 03/11/10 04:02:15 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Operators/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators/3.3/CombinedOperator.cs
r2851 r3000 22 22 using HeuristicLab.Collections; 23 23 using HeuristicLab.Core; 24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 24 25 25 26 namespace HeuristicLab.Operators { … … 29 30 [Item("CombinedOperator", "An operator which contains an operator graph.")] 30 31 [Creatable("Test")] 32 [StorableClass(StorableClassType.Empty)] 31 33 public sealed class CombinedOperator : AlgorithmOperator, IParameterizedItem { 32 34 public new ParameterCollection Parameters { -
trunk/sources/HeuristicLab.Operators/3.3/ParallelSubScopesProcessor.cs
r2834 r3000 21 21 22 22 using HeuristicLab.Core; 23 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 23 24 24 25 namespace HeuristicLab.Operators { … … 28 29 [Item("ParallelSubScopesProcessor", "An operator which contains multiple operators of which each is applied in parallel on one sub-scope of the current scope. The first operator is applied on the first sub-scope, the second on the second, and so on.")] 29 30 [Creatable("Test")] 31 [StorableClass(StorableClassType.Empty)] 30 32 public sealed class ParallelSubScopesProcessor : MultipleCallsOperator { 31 33 public ParallelSubScopesProcessor() -
trunk/sources/HeuristicLab.Operators/3.3/SequentialSubScopesProcessor.cs
r2834 r3000 21 21 22 22 using HeuristicLab.Core; 23 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 23 24 24 25 namespace HeuristicLab.Operators { … … 28 29 [Item("SequentialSubScopesProcessor", "An operator which contains multiple operators of which each is applied sequentially on one sub-scope of the current scope. The first operator is applied on the first sub-scope, the second on the second, and so on.")] 29 30 [Creatable("Test")] 31 [StorableClass(StorableClassType.Empty)] 30 32 public sealed class SequentialSubScopesProcessor : MultipleCallsOperator { 31 33 public SequentialSubScopesProcessor()
Note: See TracChangeset
for help on using the changeset viewer.