From: Henri Casanova Date: Thu, 9 Mar 2023 18:45:19 +0000 (-1000) Subject: Assert message fix X-Git-Tag: v3.34~353 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/5c5f0f91b9ca71ee758867269b8fe0a04506d559 Assert message fix --- diff --git a/src/kernel/lmm/maxmin.cpp b/src/kernel/lmm/maxmin.cpp index 73b110caaa..750b662f9d 100644 --- a/src/kernel/lmm/maxmin.cpp +++ b/src/kernel/lmm/maxmin.cpp @@ -219,7 +219,7 @@ template void MaxMin::maxmin_solve(CnstList& cnst_list) xbt_assert( not cnst_light_tab[pos].cnst->active_element_set_.empty(), "Cannot saturate more a constraint that has" - " no active element! You may want to change the work amount precision (--cfg=precision/work:)" + " no active element! You may want to change the work amount precision (--cfg=maxmin/precision:)" " because of possible rounding effects.\n\tFor the record, the usage of this constraint is %g while " "the maxmin precision to which it is compared is %g.\n\tThe usage of the previous constraint is %g.", cnst_light_tab[pos].cnst->usage_, sg_precision_workamount, cnst_light_tab[pos - 1].cnst->usage_);