Changeset 10538 for branches/DataPreprocessing/HeuristicLab.Encodings.PermutationEncoding/3.3/Manipulators
- Timestamp:
- 03/05/14 14:48:13 (11 years ago)
- Location:
- branches/DataPreprocessing
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing
- Property svn:mergeinfo changed
-
branches/DataPreprocessing/HeuristicLab.Encodings.PermutationEncoding
- Property svn:mergeinfo changed
-
branches/DataPreprocessing/HeuristicLab.Encodings.PermutationEncoding/3.3/Manipulators/MultiPermutationManipulator.cs
r9456 r10538 57 57 Operators.Add((IPermutationManipulator)Activator.CreateInstance(type), true); 58 58 } 59 60 SelectedOperatorParameter.ActualName = "SelectedManipulationOperator"; 59 61 } 60 62 … … 82 84 } 83 85 84 public override IOperation Apply() {86 public override IOperation InstrumentedApply() { 85 87 if (Operators.Count == 0) throw new InvalidOperationException(Name + ": Please add at least one permutation manipulator to choose from."); 86 return base. Apply();88 return base.InstrumentedApply(); 87 89 } 88 90 }
Note: See TracChangeset
for help on using the changeset viewer.