Changeset 10299
- Timestamp:
- 01/07/14 15:14:39 (11 years ago)
- Location:
- branches/FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape
- Files:
-
- 2 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 } -
branches/FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Analysis/QualityTrailMultiAnalyzer.cs
r7176 r10299 101 101 } 102 102 103 public override IOperation Apply() {103 public override IOperation InstrumentedApply() { 104 104 UpdateQualityTrail(); 105 105 … … 121 121 122 122 } 123 next.Add(base. Apply());123 next.Add(base.InstrumentedApply()); 124 124 return next; 125 125 }
Note: See TracChangeset
for help on using the changeset viewer.