Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/07/14 13:13:41 (10 years ago)
Author:
mkommend
Message:

#2119: Adapted all multi operators to subclass InstrumentedOperator.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Analysis/3.3/MultiAnalyzer.cs

    r9456 r10295  
    6969    }
    7070
    71     public override IOperation Apply() {
     71    public override IOperation InstrumentedApply() {
    7272      IntValue interval = UpdateIntervalParameter.ActualValue;
    7373      if (interval == null) interval = new IntValue(1);
     
    8484        foreach (IndexedItem<IAnalyzer> item in Operators.CheckedItems)
    8585          next.Add(ExecutionContext.CreateOperation(item.Value));
    86         next.Add(base.Apply());
     86        next.Add(base.InstrumentedApply());
    8787        return next;
    8888      } else {
    89         return base.Apply();
     89        return base.InstrumentedApply();
    9090      }
    9191    }
Note: See TracChangeset for help on using the changeset viewer.