From: Christian Heinrich Date: Tue, 17 Jul 2018 11:38:39 +0000 (+0200) Subject: [SMPI/LB] Use mapping class within the LB X-Git-Tag: v3_21~329 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/332d30cedc2179b93305a6d2011b83b6e7e0a2c0 [SMPI/LB] Use mapping class within the LB --- diff --git a/include/simgrid/smpi/loadbalancer/load_balancer.hpp b/include/simgrid/smpi/loadbalancer/load_balancer.hpp index 37606ba54d..6bc4e72939 100644 --- a/include/simgrid/smpi/loadbalancer/load_balancer.hpp +++ b/include/simgrid/smpi/loadbalancer/load_balancer.hpp @@ -2,6 +2,8 @@ #ifndef HAVE_SG_PLUGIN_LB #define HAVE_SG_PLUGIN_LB +#include + namespace simgrid { namespace plugin { namespace loadbalancer { @@ -52,8 +54,8 @@ public: class LoadBalancer { - std::map actor_computation; - std::map new_mapping; + Mapping new_mapping; + std::map actor_computation; public: LoadBalancer();