Changeset 5177 for branches/ParallelEngine/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/Crossovers/MultiIntegerVectorCrossover.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/Crossovers/MultiIntegerVectorCrossover.cs
r4722 r5177 90 90 } 91 91 92 public override IOperation Apply( ) {92 public override IOperation Apply(IExecutionContext context) { 93 93 if (Operators.Count == 0) throw new InvalidOperationException(Name + ": Please add at least one integer vector crossover to choose from."); 94 return base.Apply( );94 return base.Apply(context); 95 95 } 96 96 }
Note: See TracChangeset
for help on using the changeset viewer.