Changeset 3160 for trunk/sources/HeuristicLab.Operators
- Timestamp:
- 03/22/10 03:25:21 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Operators/3.3
- Files:
-
- 21 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators/3.3/Assigner.cs
r3017 r3160 30 30 [Item("Assigner", "An operator which clones and assigns the value of one parameter to another parameter.")] 31 31 [StorableClass] 32 [Creatable("Test")]33 32 public sealed class Assigner : SingleSuccessorOperator { 34 33 public LookupParameter<IItem> LeftSideParameter { -
trunk/sources/HeuristicLab.Operators/3.3/CombinedOperator.cs
r3034 r3160 29 29 /// </summary> 30 30 [Item("CombinedOperator", "An operator which contains an operator graph.")] 31 [Creatable("Test")]32 31 [StorableClass] 33 32 public sealed class CombinedOperator : AlgorithmOperator, IParameterizedItem { -
trunk/sources/HeuristicLab.Operators/3.3/Comparator.cs
r3048 r3160 32 32 [Item("Comparator", "An operator which compares two items.")] 33 33 [StorableClass] 34 [Creatable("Test")]35 34 public sealed class Comparator : SingleSuccessorOperator { 36 35 public LookupParameter<IItem> LeftSideParameter { -
trunk/sources/HeuristicLab.Operators/3.3/ConditionalBranch.cs
r3048 r3160 30 30 /// </summary> 31 31 [Item("ConditionalBranch", "A branch of two operators whose executions depend on a boolean condition.")] 32 [Creatable("Test")]33 32 [StorableClass] 34 33 public class ConditionalBranch : SingleSuccessorOperator { -
trunk/sources/HeuristicLab.Operators/3.3/DoubleCounter.cs
r3048 r3160 31 31 [Item("DoubleCounter", "An operator which increments a double variable.")] 32 32 [StorableClass] 33 [Creatable("Test")]34 33 public sealed class DoubleCounter : SingleSuccessorOperator { 35 34 public LookupParameter<DoubleValue> ValueParameter { -
trunk/sources/HeuristicLab.Operators/3.3/EmptyOperator.cs
r3017 r3160 28 28 /// </summary> 29 29 [Item("EmptyOperator", "An operator which represents an empty statement.")] 30 [Creatable("Test")]31 30 [StorableClass] 32 31 public sealed class EmptyOperator : SingleSuccessorOperator { -
trunk/sources/HeuristicLab.Operators/3.3/IntCounter.cs
r3048 r3160 31 31 [Item("IntCounter", "An operator which increments an integer variable.")] 32 32 [StorableClass] 33 [Creatable("Test")]34 33 public sealed class IntCounter : SingleSuccessorOperator { 35 34 public LookupParameter<IntValue> ValueParameter { -
trunk/sources/HeuristicLab.Operators/3.3/ParallelSubScopesProcessor.cs
r3017 r3160 28 28 /// </summary> 29 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.")] 30 [Creatable("Test")]31 30 [StorableClass] 32 31 public sealed class ParallelSubScopesProcessor : MultipleCallsOperator { -
trunk/sources/HeuristicLab.Operators/3.3/Placeholder.cs
r3034 r3160 29 29 /// </summary> 30 30 [Item("Placeholder", "An operator which acts as a placeholder for another operator retrieved from the scope or a parent execution context.")] 31 [Creatable("Test")]32 31 [StorableClass] 33 32 public sealed class Placeholder : SingleSuccessorOperator { -
trunk/sources/HeuristicLab.Operators/3.3/ResultsCollector.cs
r3139 r3160 29 29 /// </summary> 30 30 [Item("ResultsCollector", "An operator which collects the actual values of parameters and adds them to a collection of variables.")] 31 [Creatable("Test")]32 31 [StorableClass] 33 32 public class ResultsCollector : ValuesCollector { -
trunk/sources/HeuristicLab.Operators/3.3/ScopeCleaner.cs
r3017 r3160 30 30 [Item("ScopeCleaner", "An operator which removes all variables and sub-scopes from the current scope.")] 31 31 [StorableClass] 32 [Creatable("Test")]33 32 public sealed class ScopeCleaner : SingleSuccessorOperator { 34 33 private ScopeParameter CurrentScopeParameter { -
trunk/sources/HeuristicLab.Operators/3.3/SequentialSubScopesProcessor.cs
r3017 r3160 28 28 /// </summary> 29 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.")] 30 [Creatable("Test")]31 30 [StorableClass] 32 31 public sealed class SequentialSubScopesProcessor : MultipleCallsOperator { -
trunk/sources/HeuristicLab.Operators/3.3/SingleSuccessorOperator.cs
r3017 r3160 29 29 /// </summary> 30 30 [Item("SingleSuccessorOperator", "A base class for operators which have only one successor.")] 31 [Creatable("Test")]32 31 [StorableClass] 33 32 public abstract class SingleSuccessorOperator : Operator { -
trunk/sources/HeuristicLab.Operators/3.3/StochasticBranch.cs
r3048 r3160 30 30 /// </summary> 31 31 [Item("StochasticBranch", "A branch of two operators which are executed with a specified probability.")] 32 [Creatable("Test")]33 32 [StorableClass] 34 33 public class StochasticBranch : SingleSuccessorOperator { -
trunk/sources/HeuristicLab.Operators/3.3/SubScopesCreator.cs
r3048 r3160 31 31 [Item("SubScopesCreator", "An operator which adds new and empty sub-scopes to the current scope.")] 32 32 [StorableClass] 33 [Creatable("Test")]34 33 public class SubScopesCreator : SingleSuccessorOperator { 35 34 public ValueLookupParameter<IntValue> NumberOfSubScopesParameter { -
trunk/sources/HeuristicLab.Operators/3.3/SubScopesRemover.cs
r3048 r3160 31 31 [Item("SubScopesRemover", "An operator which removes all sub-scopes or one specified sub-scope from the current scope.")] 32 32 [StorableClass] 33 [Creatable("Test")]34 33 public sealed class SubScopesRemover : SingleSuccessorOperator { 35 34 private ValueParameter<BoolValue> RemoveAllSubScopesParameter { -
trunk/sources/HeuristicLab.Operators/3.3/SubScopesSorter.cs
r3048 r3160 31 31 [Item("SubScopesSorter", "An operator which sorts the sub-scopes of the current scope.")] 32 32 [StorableClass] 33 [Creatable("Test")]34 33 public sealed class SubScopesSorter : SingleSuccessorOperator { 35 34 private bool descending; -
trunk/sources/HeuristicLab.Operators/3.3/UniformParallelSubScopesProcessor.cs
r3017 r3160 29 29 /// </summary> 30 30 [Item("UniformParallelSubScopesProcessor", "An operator which applies a specified operator on all sub-scopes of the current scope in parallel.")] 31 [Creatable("Test")]32 31 [StorableClass] 33 32 public sealed class UniformParallelSubScopesProcessor : SingleSuccessorOperator { -
trunk/sources/HeuristicLab.Operators/3.3/UniformSequentialSubScopesProcessor.cs
r3017 r3160 29 29 /// </summary> 30 30 [Item("UniformSequentialSubScopesProcessor", "An operator which applies a specified operator sequentially on all sub-scopes of the current scope.")] 31 [Creatable("Test")]32 31 [StorableClass] 33 32 public sealed class UniformSequentialSubScopesProcessor : SingleSuccessorOperator { -
trunk/sources/HeuristicLab.Operators/3.3/ValuesCollector.cs
r3017 r3160 29 29 /// </summary> 30 30 [Item("ValuesCollector", "An operator which collects the actual values of parameters.")] 31 [Creatable("Test")]32 31 [StorableClass] 33 32 public abstract class ValuesCollector : SingleSuccessorOperator, IOperator { -
trunk/sources/HeuristicLab.Operators/3.3/VariableCreator.cs
r3095 r3160 29 29 /// </summary> 30 30 [Item("VariableCreator", "An operator which collects the actual values of parameters and clones them into the current scope.")] 31 [Creatable("Test")]32 31 [StorableClass] 33 32 public class VariableCreator : ValuesCollector {
Note: See TracChangeset
for help on using the changeset viewer.