We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96c817b commit 7377504Copy full SHA for 7377504
1 file changed
orproblems/routing/capacitated_vehicle_routing.hpp
@@ -25,7 +25,6 @@
25
26
#include <iostream>
27
#include <fstream>
28
-#include <memory>
29
#include <iomanip>
30
31
namespace orproblems
@@ -310,7 +309,7 @@ class InstanceBuilder
310
309
"Unable to open file \"" + instance_path + "\".");
311
}
312
313
- if (format == "" || format == "vrplib") {
+ if (format == "" || format == "cvrplib") {
314
read_cvrplib(file);
315
} else {
316
throw std::invalid_argument(
0 commit comments