Skip to content

Commit

Permalink
Merge pull request #385 from boostorg/disjoint_set_doc_fixes
Browse files Browse the repository at this point in the history
Fix issue #384: broken links between disjoint_sets and incremental connected components
  • Loading branch information
jeremy-murphy authored Sep 11, 2024
2 parents 5557ccf + 41d39a5 commit 98019df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions doc/disjoint_sets.html
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ <h3>Complexity</h3>
very slowly, much more slowly than the <i>log</i> function.</p>

<h3>See Also</h3><a href=
"../graph/doc/incremental_components.html"><tt>incremental_connected_components()</tt></a>
"incremental_components.html"><tt>incremental_connected_components()</tt></a>
<hr>
<pre>
disjoint_sets_with_storage&lt;ID,InverseID,FindCompress&gt;
Expand All @@ -181,7 +181,7 @@ <h3>See Also</h3><a href=
The rank and parent properties are initialized during construction so the
each element is in a set by itself (so it is not necessary to initialize
objects of this class with the <a href=
"../graph/doc/incremental_components.html#sec:initialize-incremental-components">
"incremental_components.html#sec:initialize-incremental-components">
<tt>initialize_incremental_components()</tt></a> function). This class is
especially useful when computing the (dynamic) connected components of an
<tt>edge_list</tt> graph which does not provide a place to store vertex
Expand Down
2 changes: 1 addition & 1 deletion doc/incremental_components.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ <H1>Incremental Connected Components</H1>
hence it is called <b><i>incremental</i></b><a
href="bibliography.html#eppstein97:dynamic_graph">[42]</a> (and not
fully dynamic). The disjoint-sets class is described in Section <A
HREF="../../disjoint_sets/disjoint_sets.html">Disjoint Sets</A>.
HREF="disjoint_sets.html">Disjoint Sets</A>.

<P>
The following five operations are the primary functions that you will
Expand Down

0 comments on commit 98019df

Please sign in to comment.