Changeset 10295 for trunk/sources/HeuristicLab.Encodings.BinaryVectorEncoding/3.3/Crossovers/MultiBinaryVectorCrossover.cs
- Timestamp:
- 01/07/14 13:13:41 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.BinaryVectorEncoding/3.3/Crossovers/MultiBinaryVectorCrossover.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 binary vector crossover to choose from."); 94 return base. Apply();94 return base.InstrumentedApply(); 95 95 } 96 96 }
Note: See TracChangeset
for help on using the changeset viewer.