X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c46aba70aa4ccf22cc19fac31d451c7158e922dd..a59892e02855ae21ccf6abd4925d962f81b384b2:/src/surf/network_ib.cpp diff --git a/src/surf/network_ib.cpp b/src/surf/network_ib.cpp index 7b743d5d82..546ba3532c 100644 --- a/src/surf/network_ib.cpp +++ b/src/surf/network_ib.cpp @@ -178,7 +178,7 @@ namespace simgrid { if (!double_equals(penalized_bw, rate_before_update, sg_surf_precision)){ XBT_DEBUG("%d->%d action %p penalty updated : bw now %f, before %f , initial rate %f", root->id,(*it)->destination->id,(*it)->action,penalized_bw, (*it)->action->getBound(), (*it)->init_rate ); - lmm_update_variable_bound(p_maxminSystem, (*it)->action->getVariable(), penalized_bw); + lmm_update_variable_bound(maxminSystem_, (*it)->action->getVariable(), penalized_bw); }else{ XBT_DEBUG("%d->%d action %p penalty not updated : bw %f, initial rate %f", root->id,(*it)->destination->id,(*it)->action,penalized_bw, (*it)->init_rate ); }