From 3e86f2998b65208f42701b797b2b4d279e5e81ba Mon Sep 17 00:00:00 2001 From: oblonski Date: Wed, 11 Mar 2015 18:33:02 +0100 Subject: [PATCH] prepare release - update whats_new --- WHATS_NEW.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WHATS_NEW.md b/WHATS_NEW.md index 70b59818..99957a6c 100644 --- a/WHATS_NEW.md +++ b/WHATS_NEW.md @@ -43,8 +43,8 @@ or, if you need to assign your own ConstraintManager or to just configure the al
VehicleRoutingAlgorithm algorithm = Jsprit.Builder.newInstance(problem) ... .buildAlgorithm();
-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).
VehicleRoutingAlgorithm algorithm = Jsprit.Builder.newInstance(problem).setProperty(Parameter.THREADS,5).buildAlgorithm();