From b1fe1b32b6b8b8851c22e38d680565ae67935cd3 Mon Sep 17 00:00:00 2001 From: oblonski <4sschroeder@gmail.com> Date: Thu, 4 Dec 2014 13:35:35 +0100 Subject: [PATCH] test json stuff --- .../src/test/resources/vrp-solution.json | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 jsprit-core/src/test/resources/vrp-solution.json diff --git a/jsprit-core/src/test/resources/vrp-solution.json b/jsprit-core/src/test/resources/vrp-solution.json new file mode 100644 index 00000000..11c3bb7f --- /dev/null +++ b/jsprit-core/src/test/resources/vrp-solution.json @@ -0,0 +1,25 @@ +{ + "solution" : { + "costs" : 84.7213595499958, + "fixed_costs" : 0.0, + "variable_costs" : 84.7213595499958, + "distance" : 84.7213595499958, + "time" : 84.7213595499958, + "no_routes" : 1, + "no_unassigned_jobs" : 0, + "routes" : [ { + "fixed_costs" : 0.0, + "variable_costs" : 84.7213595499958, + "no_activities" : 1, + "start_time" : 0.0, + "act" : { + "type" : "service", + "job_id" : "s", + "arr_time" : 44.721359549995796, + "end_time" : 44.721359549995796 + }, + "end_time" : 84.7213595499958 + } ], + "unassigned_jobs" : [ ] + } +} \ No newline at end of file