X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2e149fac829260cc112102594c7271ffaab32134..94c06d66c9765753ae93968cdbd2ca5e0eb73b6d:/src/surf/network_cm02.cpp diff --git a/src/surf/network_cm02.cpp b/src/surf/network_cm02.cpp index 4ee72d2e9b..e334a3e5a6 100644 --- a/src/surf/network_cm02.cpp +++ b/src/surf/network_cm02.cpp @@ -84,7 +84,7 @@ void surf_network_model_init_Reno() if (surf_network_model) return; - using namespace simgrid::kernel; + namespace lmm = simgrid::kernel::lmm; lmm::Lagrange::set_default_protocol_function(lmm::func_reno_f, lmm::func_reno_fp, lmm::func_reno_fpi); simgrid::config::set_default("network/latency-factor", 13.01); @@ -101,7 +101,7 @@ void surf_network_model_init_Reno2() if (surf_network_model) return; - using namespace simgrid::kernel; + namespace lmm = simgrid::kernel::lmm; lmm::Lagrange::set_default_protocol_function(lmm::func_reno2_f, lmm::func_reno2_fp, lmm::func_reno2_fpi); simgrid::config::set_default("network/latency-factor", 13.01); @@ -117,7 +117,7 @@ void surf_network_model_init_Vegas() if (surf_network_model) return; - using namespace simgrid::kernel; + namespace lmm = simgrid::kernel::lmm; lmm::Lagrange::set_default_protocol_function(lmm::func_vegas_f, lmm::func_vegas_fp, lmm::func_vegas_fpi); simgrid::config::set_default("network/latency-factor", 13.01);