From: Augustin Degomme Date: Tue, 18 Feb 2020 23:53:16 +0000 (+0100) Subject: put default surf precision value to 1e-9 instead of 1e-5. X-Git-Tag: v3.26~887^2~5 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/baaf903efbf8a62669075e95f90419c1728ff17a put default surf precision value to 1e-9 instead of 1e-5. This was causing some hard to understand bugs for users with high bandwidth tests, and is actually not that expensive. --- diff --git a/src/kernel/lmm/maxmin.cpp b/src/kernel/lmm/maxmin.cpp index f36f3ca533..08dd3efb5a 100644 --- a/src/kernel/lmm/maxmin.cpp +++ b/src/kernel/lmm/maxmin.cpp @@ -9,7 +9,7 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_maxmin, surf, "Logging specific to SURF (maxmin)"); double sg_maxmin_precision = 0.00001; /* Change this with --cfg=maxmin/precision:VALUE */ -double sg_surf_precision = 0.00001; /* Change this with --cfg=surf/precision:VALUE */ +double sg_surf_precision = 0.000000001; /* Change this with --cfg=surf/precision:VALUE */ int sg_concurrency_limit = -1; /* Change this with --cfg=maxmin/concurrency-limit:VALUE */ namespace simgrid {