Skip to content

Commit 7377504

Browse files
committed
Fix capacitated_vehicle_routing
1 parent 96c817b commit 7377504

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

orproblems/routing/capacitated_vehicle_routing.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525

2626
#include <iostream>
2727
#include <fstream>
28-
#include <memory>
2928
#include <iomanip>
3029

3130
namespace orproblems
@@ -310,7 +309,7 @@ class InstanceBuilder
310309
"Unable to open file \"" + instance_path + "\".");
311310
}
312311

313-
if (format == "" || format == "vrplib") {
312+
if (format == "" || format == "cvrplib") {
314313
read_cvrplib(file);
315314
} else {
316315
throw std::invalid_argument(

0 commit comments

Comments
 (0)