Ignore:
Timestamp:
06/13/18 16:48:53 (6 years ago)
Author:
oabramkina
Message:

Replacing Boost's unordered_map and shared_pointer by its STL counterparts.

Two notes for Curie:

  • one can see the content of unordered_map with ddt only if XIOS has been compiled with gnu
  • XIOS will not compile any more with pgi (all available versions use old STL which are not up to the c++11 norms)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/node/domain.hpp

    r1353 r1542  
    215215 
    216216/** Global index of each client sent to server: map<serverSize, map<serverRank, indexes>> */ 
    217          std::map<int, boost::unordered_map<int, vector<size_t> > > indSrv_; 
     217         std::map<int, std::unordered_map<int, vector<size_t> > > indSrv_; 
    218218         // std::map<CContextClient*, std::map<int, vector<int> > > indWrittenSrv_; // Global written index of each client sent to server 
    219219         std::vector<int> indexesToWrite; 
     
    229229         TransMapTypes transformationMap_;          
    230230         bool isUnstructed_; 
    231          boost::unordered_map<size_t,size_t> globalLocalIndexMap_; 
     231         std::unordered_map<size_t,size_t> globalLocalIndexMap_; 
    232232        
    233233       private: 
Note: See TracChangeset for help on using the changeset viewer.