From 5c5f0f91b9ca71ee758867269b8fe0a04506d559 Mon Sep 17 00:00:00 2001 From: Henri Casanova Date: Thu, 9 Mar 2023 08:45:19 -1000 Subject: [PATCH] Assert message fix --- 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 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_); -- 2.20.1