- Timestamp:
- 02/20/14 14:29:01 (11 years ago)
- Location:
- branches/SpectralKernelForGaussianProcesses
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SpectralKernelForGaussianProcesses
- Property svn:mergeinfo changed
-
branches/SpectralKernelForGaussianProcesses/HeuristicLab.Analysis
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Analysis (added) merged: 10295
- Property svn:mergeinfo changed
-
branches/SpectralKernelForGaussianProcesses/HeuristicLab.Analysis/3.3/MultiAnalyzer.cs
r9456 r10479 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.