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

prepare release - update whats_new

This commit is contained in:
oblonski 2015-03-11 18:33:02 +01:00
parent fc9072ede7
commit 3e86f2998b

View file

@ -43,8 +43,8 @@ or, if you need to assign your own ConstraintManager or to just configure the al
<pre><code>VehicleRoutingAlgorithm algorithm = Jsprit.Builder.newInstance(problem) ... .buildAlgorithm();</code></pre>
Since, the algorithm is more computationally intense, it is recommended to use all your idle computational power by setting
the number of threads you want to use (try for example noThreads = #cores+1 first).
Since, the algorithm is more computationally intense, we recommended you to use all your idle computational power by
increasing the number threads (try for example noThreads = #cores+1 first).
<pre><code>VehicleRoutingAlgorithm algorithm = Jsprit.Builder.newInstance(problem).setProperty(Parameter.THREADS,5).buildAlgorithm();</code></pre>