• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (C) 2020 Steffen Hirschmann
2 
3 // Use, modification and distribution is subject to the Boost Software
4 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 
7 #include <boost/mpi.hpp>
8 #include <boost/mpi/nonblocking.hpp>
9 #include <vector>
10 
11 
main()12 int main()
13 {
14   boost::mpi::environment env;
15   std::vector<boost::mpi::request> req(1);
16   boost::mpi::wait_all(req.begin(), req.end());
17 }
18