Changeset 3822 for trunk/sources/HeuristicLab.Operators
- Timestamp:
- 05/17/10 02:38:32 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Operators/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators/3.3/CheckedMultiOperator.cs
r3616 r3822 33 33 /// A base class for operators which apply arbitrary many other operators of a specific type that can be checked or unchecked. 34 34 /// </summary> 35 [Item("CheckedMultiOperator <T>", "A base class for operators which apply arbitrary many other operators of a specific type that can be checked or unchecked.")]35 [Item("CheckedMultiOperator", "A base class for operators which apply arbitrary many other operators of a specific type that can be checked or unchecked.")] 36 36 [StorableClass] 37 37 public abstract class CheckedMultiOperator<T> : MultiOperator<T> where T : class, IOperator { -
trunk/sources/HeuristicLab.Operators/3.3/MultiOperator.cs
r3729 r3822 33 33 /// A base class for operators which apply arbitrary many other operators of a specific type. 34 34 /// </summary> 35 [Item("MultiOperator <T>", "A base class for operators which apply arbitrary many other operators of a specific type.")]35 [Item("MultiOperator", "A base class for operators which apply arbitrary many other operators of a specific type.")] 36 36 [StorableClass] 37 37 public abstract class MultiOperator<T> : SingleSuccessorOperator where T : class, IOperator { -
trunk/sources/HeuristicLab.Operators/3.3/StochasticMultiBranch.cs
r3817 r3822 34 34 /// Selects one of its branches (if there are any) given a list of relative probabilities. 35 35 /// </summary> 36 [Item("StochasticMultiBranch <T>", "Selects one of its branches (if there are any) given a list of relative probabilities.")]36 [Item("StochasticMultiBranch", "Selects one of its branches (if there are any) given a list of relative probabilities.")] 37 37 [StorableClass] 38 38 public abstract class StochasticMultiBranch<T> : CheckedMultiOperator<T> where T : class, IOperator {
Note: See TracChangeset
for help on using the changeset viewer.