Changeset 10507 for stable/HeuristicLab.Analysis
- Timestamp:
- 02/25/14 14:00:47 (11 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 10149,10231,10261,10291-10292,10295,10298
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Analysis
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Analysis merged: 10295
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Analysis/3.3/MultiAnalyzer.cs
r9456 r10507 69 69 } 70 70 71 public override IOperation Apply() {71 public override IOperation InstrumentedApply() { 72 72 IntValue interval = UpdateIntervalParameter.ActualValue; 73 73 if (interval == null) interval = new IntValue(1); … … 84 84 foreach (IndexedItem<IAnalyzer> item in Operators.CheckedItems) 85 85 next.Add(ExecutionContext.CreateOperation(item.Value)); 86 next.Add(base. Apply());86 next.Add(base.InstrumentedApply()); 87 87 return next; 88 88 } else { 89 return base. Apply();89 return base.InstrumentedApply(); 90 90 } 91 91 }
Note: See TracChangeset
for help on using the changeset viewer.