Changeset 10538 for branches/DataPreprocessing/HeuristicLab.Encodings.BinaryVectorEncoding/3.3/Crossovers
- Timestamp:
- 03/05/14 14:48:13 (11 years ago)
- Location:
- branches/DataPreprocessing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing
- Property svn:mergeinfo changed
-
branches/DataPreprocessing/HeuristicLab.Encodings.BinaryVectorEncoding/3.3/Crossovers/MultiBinaryVectorCrossover.cs
r9456 r10538 64 64 Operators.Add((IBinaryVectorCrossover)Activator.CreateInstance(type), true); 65 65 } 66 67 SelectedOperatorParameter.ActualName = "SelectedCrossoverOperator"; 66 68 } 67 69 … … 90 92 } 91 93 92 public override IOperation Apply() {94 public override IOperation InstrumentedApply() { 93 95 if (Operators.Count == 0) throw new InvalidOperationException(Name + ": Please add at least one binary vector crossover to choose from."); 94 return base. Apply();96 return base.InstrumentedApply(); 95 97 } 96 98 }
Note: See TracChangeset
for help on using the changeset viewer.