Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/distributed_adjacency_list.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ vertices or edges of the graph.

using namespace boost;
typedef adjacency_list<vecS,
distributedS<parallel::mpi::bsp_process_group, vecS>,
distributedS<graph::distributed::mpi_process_group, vecS>,
directedS>
Graph;

Expand Down Expand Up @@ -120,7 +120,7 @@ respectively:
::

typedef adjacency_list<vecS,
distributedS<parallel::mpi::bsp_process_group, vecS>,
distributedS<graph::distributed::mpi_process_group, vecS>,
directedS,
City, Highway>
RoadMap;
Expand Down
4 changes: 2 additions & 2 deletions doc/html/distributed_adjacency_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ <h2><a class="toc-backref" href="#id2">Defining a Distributed Adjacency List</a>
<pre class="literal-block">
using namespace boost;
typedef adjacency_list&lt;vecS,
distributedS&lt;parallel::mpi::bsp_process_group, vecS&gt;,
distributedS&lt;graph::distributed::mpi_process_group, vecS&gt;,
directedS&gt;
Graph;
</pre>
Expand Down Expand Up @@ -135,7 +135,7 @@ <h2><a class="toc-backref" href="#id3">Distributed Vertex and Edge Properties</a
respectively:</p>
<pre class="literal-block">
typedef adjacency_list&lt;vecS,
distributedS&lt;parallel::mpi::bsp_process_group, vecS&gt;,
distributedS&lt;graph::distributed::mpi_process_group, vecS&gt;,
directedS,
City, Highway&gt;
RoadMap;
Expand Down