mirror of
https://github.com/graphhopper/jsprit.git
synced 2020-01-24 07:45:05 +01:00
adapt examples to head of development
This commit is contained in:
parent
264dafd06a
commit
759359b702
40 changed files with 413 additions and 445 deletions
|
|
@ -1,16 +1,16 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (C) 2013 Stefan Schroeder
|
||||
*
|
||||
* Copyright (C) 2014 Stefan Schroeder
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 3.0 of the License, or (at your option) any later version.
|
||||
*
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
******************************************************************************/
|
||||
|
|
@ -129,16 +129,17 @@ public class SolutionPrinter {
|
|||
System.out.format(leftAlgin, routeNu, getVehicleString(route), route.getEnd().getName(), "-", Math.round(route.getEnd().getArrTime()), "undef", Math.round(costs));
|
||||
routeNu++;
|
||||
}
|
||||
System.out.format("+*:=PenaltyVehicle+%n");
|
||||
System.out.format("+--------------------------------------------------------------------------------------------------------------------------------+%n");
|
||||
System.out.format("+----------------+%n");
|
||||
System.out.format("| unassignedJobs |%n");
|
||||
System.out.format("+----------------+%n");
|
||||
String unassignedJobAlgin = "| %-14s |%n";
|
||||
for(Job j : solution.getUnassignedJobs()){
|
||||
System.out.format(unassignedJobAlgin,j.getId());
|
||||
if(!solution.getUnassignedJobs().isEmpty()) {
|
||||
System.out.format("+----------------+%n");
|
||||
System.out.format("| unassignedJobs |%n");
|
||||
System.out.format("+----------------+%n");
|
||||
String unassignedJobAlgin = "| %-14s |%n";
|
||||
for (Job j : solution.getUnassignedJobs()) {
|
||||
System.out.format(unassignedJobAlgin, j.getId());
|
||||
}
|
||||
System.out.format("+----------------+%n");
|
||||
}
|
||||
System.out.format("+----------------+%n");
|
||||
}
|
||||
|
||||
private static String getVehicleString(VehicleRoute route) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue