Merge pull request #24 from cojuer/develop

Remove mentions of bsp_process_group from docs
This commit is contained in:
Jeremy W. Murphy
2025-09-24 18:57:14 +09:00
committed by GitHub
2 changed files with 4 additions and 4 deletions

View File

@@ -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;
@@ -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;

View File

@@ -79,7 +79,7 @@ vertices or edges of the graph.</p>
<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>
@@ -135,7 +135,7 @@ struct Highway {
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;