- Timestamp:
- 01/28/14 19:25:26 (11 years ago)
- Location:
- branches/HeuristicLab.Analysis.AlgorithmBehavior
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers/3.3/AfterCrossoverCombinedOperator.cs
r9789 r10416 106 106 } 107 107 108 public override IOperation Apply() {108 public override IOperation InstrumentedApply() { 109 109 if (GenerationsParameter.ActualValue.Value % UpdateIntervalParameter.Value.Value == 0) { 110 return base. Apply();110 return base.InstrumentedApply(); 111 111 } else { 112 112 return base.BaseApply(); -
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers/3.3/AfterMutationCombinedOperator.cs
r9789 r10416 97 97 } 98 98 99 public override IOperation Apply() {99 public override IOperation InstrumentedApply() { 100 100 if (GenerationsParameter.ActualValue.Value % UpdateIntervalParameter.Value.Value == 0) { 101 return base. Apply();101 return base.InstrumentedApply(); 102 102 } else { 103 103 return base.BaseApply(); -
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers/3.3/CombinedOperator.cs
r9789 r10416 55 55 56 56 protected IOperation BaseApply() { 57 return base. Apply();57 return base.InstrumentedApply(); 58 58 } 59 59 60 public override IOperation Apply() {60 public override IOperation InstrumentedApply() { 61 61 if (Operators.Count == 0) 62 62 InitializeOperators(); 63 63 64 OperationCollection next = new OperationCollection(base. Apply());64 OperationCollection next = new OperationCollection(base.InstrumentedApply()); 65 65 OperationCollection inner = new OperationCollection(); 66 66 inner.Parallel = false; -
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.SolutionCaching/3.3/Algorithm/ParallelOperatorProcessor.cs
r10090 r10416 55 55 } 56 56 57 public override IOperation Apply() {58 OperationCollection next = new OperationCollection(base. Apply());57 public override IOperation InstrumentedApply() { 58 OperationCollection next = new OperationCollection(base.InstrumentedApply()); 59 59 OperationCollection inner = new OperationCollection(); 60 60 inner.Parallel = Parallel != null && Parallel.Value;
Note: See TracChangeset
for help on using the changeset viewer.