mpi_include.hpp 540 B

12345678910111213141516
  1. #ifndef BOOST_GRAPH_DETAIL_MPI_INCLUDE_HPP_INCLUDED
  2. #define BOOST_GRAPH_DETAIL_MPI_INCLUDE_HPP_INCLUDED
  3. // Copyright 2018 Peter Dimov
  4. //
  5. // Use, modification and distribution are subject to the
  6. // Boost Software License, Version 1.0 (See accompanying file
  7. // LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
  8. #if defined BOOST_GRAPH_USE_MPI
  9. # define BOOST_GRAPH_MPI_INCLUDE(x) x
  10. #else
  11. # define BOOST_GRAPH_MPI_INCLUDE(x) <boost/graph/detail/empty_header.hpp>
  12. #endif
  13. #endif // #ifndef BOOST_GRAPH_DETAIL_MPI_INCLUDE_HPP_INCLUDED