- Timestamp:
- 01/07/14 13:13:41 (11 years ago)
- Location:
- trunk/sources/HeuristicLab.Encodings.PermutationEncoding/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.PermutationEncoding/3.3/Crossovers/MultiPermutationCrossover.cs
r9456 r10295 90 90 } 91 91 92 public override IOperation Apply() {92 public override IOperation InstrumentedApply() { 93 93 if (Operators.Count == 0) throw new InvalidOperationException(Name + ": Please add at least one permutation crossover to choose from."); 94 return base. Apply();94 return base.InstrumentedApply(); 95 95 } 96 96 } -
trunk/sources/HeuristicLab.Encodings.PermutationEncoding/3.3/Manipulators/MultiPermutationManipulator.cs
r9456 r10295 82 82 } 83 83 84 public override IOperation Apply() {84 public override IOperation InstrumentedApply() { 85 85 if (Operators.Count == 0) throw new InvalidOperationException(Name + ": Please add at least one permutation manipulator to choose from."); 86 return base. Apply();86 return base.InstrumentedApply(); 87 87 } 88 88 }
Note: See TracChangeset
for help on using the changeset viewer.