DIY  3.0
data-parallel out-of-core C++ library
 All Classes Namespaces Functions Typedefs Groups Pages
constants.hpp
1 #ifndef DIY_MPI_CONSTANTS_HPP
2 #define DIY_MPI_CONSTANTS_HPP
3 
4 namespace diy
5 {
6 namespace mpi
7 {
8  const int any_source = MPI_ANY_SOURCE;
9  const int any_tag = MPI_ANY_TAG;
10 }
11 }
12 
13 #endif