Changeset 5177 for branches/ParallelEngine/HeuristicLab.Encodings.RealVectorEncoding/3.3/Crossovers/MultiRealVectorCrossover.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Encodings.RealVectorEncoding/3.3/Crossovers/MultiRealVectorCrossover.cs
r4722 r5177 97 97 } 98 98 99 public override IOperation Apply( ) {99 public override IOperation Apply(IExecutionContext context) { 100 100 if (Operators.Count == 0) throw new InvalidOperationException(Name + ": Please add at least one real vector crossover to choose from."); 101 return base.Apply( );101 return base.Apply(context); 102 102 } 103 103 }
Note: See TracChangeset
for help on using the changeset viewer.