Changeset 5177 for branches/ParallelEngine/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/General/Crossovers/MultiVRPSolutionCrossover.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/General/Crossovers/MultiVRPSolutionCrossover.cs
r4722 r5177 142 142 } 143 143 144 public override IOperation Apply( ) {144 public override IOperation Apply(IExecutionContext context) { 145 145 if (Operators.Count == 0) throw new InvalidOperationException(Name + ": Please add at least one permutation crossover to choose from."); 146 return base.Apply( );146 return base.Apply(context); 147 147 } 148 148 }
Note: See TracChangeset
for help on using the changeset viewer.