From baaf903efbf8a62669075e95f90419c1728ff17a Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Wed, 19 Feb 2020 00:53:16 +0100 Subject: [PATCH] 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. --- src/kernel/lmm/maxmin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.20.1