X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/88fad0aaff9eb463f048bfdfe4ad6218aba44ddb..5e22c862d29ac2455672f2bc7f50bbcc9ade21c2:/teshsuite/surf/maxmin_bench/maxmin_bench.cpp diff --git a/teshsuite/surf/maxmin_bench/maxmin_bench.cpp b/teshsuite/surf/maxmin_bench/maxmin_bench.cpp index c23689e584..51759905fd 100644 --- a/teshsuite/surf/maxmin_bench/maxmin_bench.cpp +++ b/teshsuite/surf/maxmin_bench/maxmin_bench.cpp @@ -44,7 +44,8 @@ static void test(int nb_cnst, int nb_var, int nb_elem, unsigned int pw_base_limi lmm::Variable* var[nb_var]; int used[nb_cnst]; - lmm::System* Sys = new lmm::System(true); + /* We cannot activate the selective update as we pass nullptr as an Action when creating the variables */ + lmm::System* Sys = new lmm::System(false); for (int i = 0; i < nb_cnst; i++) { cnst[i] = Sys->constraint_new(NULL, float_random(10.0));