Changeset 5177 for branches/ParallelEngine/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/General/Creators/MultiVRPSolutionCreator.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/Creators/MultiVRPSolutionCreator.cs
r4722 r5177 135 135 } 136 136 137 public override IOperation Apply( ) {137 public override IOperation Apply(IExecutionContext context) { 138 138 if (Operators.Count == 0) throw new InvalidOperationException(Name + ": Please add at least one VRP creator to choose from."); 139 return base.Apply( );139 return base.Apply(context); 140 140 } 141 141 }
Note: See TracChangeset
for help on using the changeset viewer.