panel.add(createExampleButton("Vehicle routing",
"Official competition name: Capacitated vehicle routing problem (CRVP).\n" +
"Pick up all items of all customers with a few vehicles in the shortest route possible.",
VehicleRoutingPanel.LOGO_PATH, new Runnable() {
public void run() {
new VehicleRoutingApp().init(false);
}
}));
panel.add(createExampleButton("Hospital bed planning",
"Official competition name: PAS - Patient admission scheduling\n" +
"Assign patients to beds.",