1
0
Fork 0
mirror of https://github.com/graphhopper/jsprit.git synced 2020-01-24 07:45:05 +01:00

Merge remote-tracking branch 'origin/master'

This commit is contained in:
oblonski 2014-11-04 16:18:58 +01:00
commit d07a2766cd
2 changed files with 14 additions and 0 deletions

View file

@ -1,5 +1,9 @@
Change-log
==========
**v1.4.2** @ 2014-10-14
new feature: core.analysis.SolutionAnalyser
**v1.4.1** @ 2014-09-25
- bugfix [#131](https://github.com/jsprit/jsprit/issues/131)
- bugfix [#134](https://github.com/jsprit/jsprit/issues/134)

View file

@ -1,5 +1,15 @@
WHATS NEW
==========
------------------------------
<b>2014-10-14</b> new release **v1.4.2**
It has a new feature to analyse your VehicleRoutingProblemSolution.
jsprit.core.analysis.SolutionAnalszer provides a way to easily calculate statistics for your solution such as load after activity, load before activity, picked load on route, delivered load on route, load at beginning of route, load at end, waiting time on route and total waiting time in solution, total transport time and distance and many more. Additionally, you can check whether jsprit's default constraints are violated or not. This might be important if you change your solution ex-post by removing a job etc.. Look at this example to see a (incomplete) list of what can be calculated out-of-the-box now: [VRPWithBackhauls - SolutionAnalyser](https://github.com/jsprit/jsprit/blob/master/jsprit-examples/src/main/java/jsprit/examples/VRPWithBackhaulsExample2.java)
<strong>Note that this feature is sponsored by [Open Door Logistics](http://www.opendoorlogistics.com).</strong>
------------------------------