DIY  3.0
data-parallel out-of-core C++ library
 All Classes Namespaces Functions Typedefs Groups Pages
communicator.hpp
1 #ifndef DIY_COMMUNICATOR_HPP
2 #define DIY_COMMUNICATOR_HPP
3 
4 #warning "diy::Communicator (in diy/communicator.hpp) is deprecated, use diy::mpi::communicator directly"
5 
6 #include "mpi.hpp"
7 
8 namespace diy
9 {
10  typedef mpi::communicator Communicator;
11 }
12 
13 #endif