Changeset 13338 for branches/RefactorPluginInfrastructure-2522/HeuristicLab.Problems.VehicleRouting/3.4/VehicleRoutingProblem.cs
- Timestamp:
- 11/23/15 16:14:30 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/RefactorPluginInfrastructure-2522/HeuristicLab.Problems.VehicleRouting/3.4/VehicleRoutingProblem.cs
r13173 r13338 23 23 using System.Collections.Generic; 24 24 using System.Drawing; 25 using System.IO; 25 26 using System.Linq; 27 using System.Reflection; 26 28 using HeuristicLab.Analysis; 27 29 using HeuristicLab.Common; … … 349 351 350 352 if (cities != ProblemInstance.Coordinates.Rows - 1) 351 ErrorHandling.ShowErrorDialog(new Exception("The optimal solution does not seem to correspond with the problem data"));353 throw new IOException("Cannot read file. The optimal solution does not seem to correspond with the problem data"); 352 354 else { 353 355 VRPSolution solution = new VRPSolution(ProblemInstance, encoding, new DoubleValue(0));
Note: See TracChangeset
for help on using the changeset viewer.