summaryrefslogtreecommitdiff
path: root/boost/graph/distributed/mpi_process_group.hpp
diff options
context:
space:
mode:
authorChanho Park <chanho61.park@samsung.com>2014-12-11 18:55:56 +0900
committerChanho Park <chanho61.park@samsung.com>2014-12-11 18:55:56 +0900
commit08c1e93fa36a49f49325a07fe91ff92c964c2b6c (patch)
tree7a7053ceb8874b28ec4b868d4c49b500008a102e /boost/graph/distributed/mpi_process_group.hpp
parentbb4dd8289b351fae6b55e303f189127a394a1edd (diff)
downloadboost-08c1e93fa36a49f49325a07fe91ff92c964c2b6c.tar.gz
boost-08c1e93fa36a49f49325a07fe91ff92c964c2b6c.tar.bz2
boost-08c1e93fa36a49f49325a07fe91ff92c964c2b6c.zip
Imported Upstream version 1.57.0upstream/1.57.0
Diffstat (limited to 'boost/graph/distributed/mpi_process_group.hpp')
-rw-r--r--boost/graph/distributed/mpi_process_group.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/boost/graph/distributed/mpi_process_group.hpp b/boost/graph/distributed/mpi_process_group.hpp
index e0ee579029..c770aa0f83 100644
--- a/boost/graph/distributed/mpi_process_group.hpp
+++ b/boost/graph/distributed/mpi_process_group.hpp
@@ -28,13 +28,13 @@
#include <boost/function/function2.hpp>
#include <boost/function/function0.hpp>
#include <boost/mpi.hpp>
-#include <boost/graph/parallel/process_group.hpp>
+#include <boost/property_map/parallel/process_group.hpp>
#include <boost/utility/enable_if.hpp>
namespace boost { namespace graph { namespace distributed {
// Process group tags
-struct mpi_process_group_tag : virtual parallel::linear_process_group_tag { };
+struct mpi_process_group_tag : virtual boost::parallel::linear_process_group_tag { };
class mpi_process_group
{
@@ -75,7 +75,7 @@ class mpi_process_group
/// Classification of the capabilities of this process group
struct communication_category
- : virtual parallel::bsp_process_group_tag,
+ : virtual boost::parallel::bsp_process_group_tag,
virtual mpi_process_group_tag { };
// TBD: We can eliminate the "source" field and possibly the
@@ -416,7 +416,7 @@ public:
void synchronize() const;
- operator bool() { return impl_; }
+ operator bool() { return bool(impl_); }
mpi_process_group base() const;