diff --git a/doc/distributed_adjacency_list.rst b/doc/distributed_adjacency_list.rst index 5b65f0a6..4b9e1e0a 100644 --- a/doc/distributed_adjacency_list.rst +++ b/doc/distributed_adjacency_list.rst @@ -58,7 +58,7 @@ vertices or edges of the graph. using namespace boost; typedef adjacency_list, + distributedS, directedS> Graph; @@ -120,7 +120,7 @@ respectively: :: typedef adjacency_list, + distributedS, directedS, City, Highway> RoadMap; diff --git a/doc/html/distributed_adjacency_list.html b/doc/html/distributed_adjacency_list.html index c4c8e63a..74afe15c 100644 --- a/doc/html/distributed_adjacency_list.html +++ b/doc/html/distributed_adjacency_list.html @@ -79,7 +79,7 @@

Defining a Distributed Adjacency List
 using namespace boost;
 typedef adjacency_list<vecS,
-                       distributedS<parallel::mpi::bsp_process_group, vecS>,
+                       distributedS<graph::distributed::mpi_process_group, vecS>,
                        directedS>
   Graph;
 
@@ -135,7 +135,7 @@

Distributed Vertex and Edge Properties
 typedef adjacency_list<vecS,
-                       distributedS<parallel::mpi::bsp_process_group, vecS>,
+                       distributedS<graph::distributed::mpi_process_group, vecS>,
                        directedS,
                        City, Highway>
   RoadMap;