Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/10/10 17:38:49 (14 years ago)
Author:
mkommend
Message:

Implemented wiring of problem specific analyzers in UserDefinedAlgorithms (ticket #1327)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators/3.3/MultiOperator.cs

    r4722 r5080  
    3434  [Item("MultiOperator", "A base class for operators which apply arbitrary many other operators of a specific type.")]
    3535  [StorableClass]
    36   public abstract class MultiOperator<T> : SingleSuccessorOperator where T : class, IOperator {
     36  public abstract class MultiOperator<T> : SingleSuccessorOperator, IMultiOperator<T> where T : class, IOperator {
    3737    private List<IValueParameter<T>> operatorParameters;
    3838
     
    6868      Initialize();
    6969    }
    70    
     70
    7171    private void Initialize() {
    7272      if (operators != null) RegisterOperatorsEvents();
Note: See TracChangeset for help on using the changeset viewer.