Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
scientific notation for readability
authorAugustin Degomme <adegomme@gmail.com>
Mon, 24 Feb 2020 10:46:01 +0000 (11:46 +0100)
committerAugustin Degomme <adegomme@gmail.com>
Mon, 24 Feb 2020 10:46:01 +0000 (11:46 +0100)
src/kernel/lmm/maxmin.cpp

index 08dd3ef..f506faf 100644 (file)
@@ -8,8 +8,8 @@
 
 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.000000001; /* Change this with --cfg=surf/precision:VALUE */
+double sg_maxmin_precision = 1E-5; /* Change this with --cfg=maxmin/precision:VALUE */
+double sg_surf_precision   = 1E-9; /* Change this with --cfg=surf/precision:VALUE */
 int sg_concurrency_limit   = -1;      /* Change this with --cfg=maxmin/concurrency-limit:VALUE */
 
 namespace simgrid {