Changeset 7853
- Timestamp:
- 05/21/12 14:12:04 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/VehicleRoutingProblem.cs
r7852 r7853 190 190 if (ProblemInstance != null) { 191 191 EvaluatorParameter.Value = ProblemInstance.SolutionEvaluator; 192 foreach (IVRPCreator creator in ProblemInstance.Operators.Where(o => o is IVRPCreator)) {192 foreach (IVRPCreator creator in operators.Where(o => o is IVRPCreator)) { 193 193 solutionCreatorParameter.ValidValues.Add(creator); 194 194 } … … 208 208 209 209 void ProblemInstanceParameter_ValueChanged(object sender, EventArgs e) { 210 InitializeOperators(); 210 211 AttachProblemInstanceEventHandlers(); 211 InitializeOperators();212 212 213 213 OnSolutionCreatorChanged();
Note: See TracChangeset
for help on using the changeset viewer.