Changeset 10299 for branches/FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Algorithms
- Timestamp:
- 01/07/14 15:14:39 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Algorithms/RepeatMultiAnalyzer.cs
r7176 r10299 57 57 } 58 58 59 public override IOperation Apply() {59 public override IOperation InstrumentedApply() { 60 60 OperationCollection next = new OperationCollection(); 61 61 foreach (IndexedItem<IRepeatsAnalyzer> item in Operators.CheckedItems) 62 62 next.Add(ExecutionContext.CreateOperation(item.Value)); 63 next.Add(base. Apply());63 next.Add(base.InstrumentedApply()); 64 64 return next; 65 65 }
Note: See TracChangeset
for help on using the changeset viewer.