From 1163f0b8b8ef5eda1d032297ffbb8b277b16c6b6 Mon Sep 17 00:00:00 2001 From: Henri Casanova Date: Thu, 9 Mar 2023 09:08:18 -1000 Subject: [PATCH] re-fixed assert message with up-to-date configuration option name --- 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 750b662f9d..c72b948553 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=maxmin/precision:)" + " no active element! You may want to change the work amount precision (--cfg=precision/work-amount:)" " 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