Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
this has to be ordered as MPI allows access to items with an index
authorAugustin Degomme <augustin.degomme@unibas.ch>
Fri, 25 Aug 2017 23:25:55 +0000 (01:25 +0200)
committerAugustin Degomme <augustin.degomme@unibas.ch>
Fri, 25 Aug 2017 23:25:55 +0000 (01:25 +0200)
src/smpi/include/smpi_info.hpp

index 2812182..61eccb2 100644 (file)
 #include "smpi/smpi.h"
 #include "smpi_f2c.hpp"
 #include <string>
-#include <unordered_map>
+#include <map>
 
 namespace simgrid{
 namespace smpi{
 
 class Info : public F2C{
   private:
-    std::unordered_map<std::string, std::string> map_;
+    std::map<std::string, std::string> map_;
     int refcount_ = 1;
 
   public: