Skip to content

Commit 28c4b81

Browse files
committed
routing: cleanup VrpCapacity.java
1 parent 40c2136 commit 28c4b81

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

ortools/routing/samples/VrpCapacity.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,11 @@ static class DataModel {
5959
public final int vehicleNumber = 4;
6060
public final int depot = 0;
6161
}
62+
6263
// [END data_model]
6364

6465
// [START solution_printer]
65-
/// @brief Print the solution.
66+
// Print the solution.
6667
static void printSolution(
6768
DataModel data, RoutingModel routing, RoutingIndexManager manager, Assignment solution) {
6869
// Solution cost.
@@ -96,9 +97,10 @@ static void printSolution(
9697
logger.info("Total distance of all routes: " + totalDistance + "m");
9798
logger.info("Total load of all routes: " + totalLoad);
9899
}
100+
99101
// [END solution_printer]
100102

101-
public static void main(String[] args) throws Exception {
103+
public static void main(String[] args) {
102104
Loader.loadNativeLibraries();
103105
// Instantiate the data problem.
104106
// [START data]

0 commit comments

Comments
 (0)