public class SolutionPrinter extends Object
| Modifier and Type | Class and Description |
|---|---|
static class |
SolutionPrinter.Print
Enum to indicate verbose-level.
|
| Constructor and Description |
|---|
SolutionPrinter() |
| Modifier and Type | Method and Description |
|---|---|
static void |
print(PrintWriter out,
VehicleRoutingProblemSolution solution)
Prints costs and #vehicles to the given writer
|
static void |
print(PrintWriter out,
VehicleRoutingProblem problem,
VehicleRoutingProblemSolution solution,
SolutionPrinter.Print print)
Prints costs and #vehicles to the given writer
|
static void |
print(VehicleRoutingProblemSolution solution)
Prints costs and #vehicles to stdout (out.println).
|
static void |
print(VehicleRoutingProblem problem,
VehicleRoutingProblemSolution solution,
SolutionPrinter.Print print)
Prints costs and #vehicles to the to stdout (out.println).
|
public static void print(VehicleRoutingProblemSolution solution)
solution - the solution to be printedpublic static void print(PrintWriter out, VehicleRoutingProblemSolution solution)
out - the destination writersolution - the solution to be printedpublic static void print(VehicleRoutingProblem problem, VehicleRoutingProblemSolution solution, SolutionPrinter.Print print)
out - the destination writersolution - the solution to be printedpublic static void print(PrintWriter out, VehicleRoutingProblem problem, VehicleRoutingProblemSolution solution, SolutionPrinter.Print print)
out - the destination writersolution - the solution to be printedCopyright © 2013–2020. All rights reserved.