Skip to content

Commit

Permalink
Fix overlap links
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph-Edwards committed Dec 17, 2024
1 parent 5269b7c commit 8e4c098
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/knuth-bendix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ system is measured.
:return: The overlap policy.
:rtype: overlap
.. seealso:: :py:class:`overlap`.
.. seealso:: :any:`overlap`.
)pbdoc")
.def("overlap_policy",
py::overload_cast<
Expand All @@ -600,7 +600,7 @@ two words in the system is measured.
:return: ``self``.
:rtype: KnuthBendixRewriteTrie
.. seealso:: :py:class:`overlap`
.. seealso:: :any:`overlap`.
)pbdoc");
//////////////////////////////////////////////////////////////////////////
// Member functions for rules and rewriting
Expand Down Expand Up @@ -778,11 +778,15 @@ Run the Knuth-Bendix algorithm by considering all overlaps of a given length.
This function runs the Knuth-Bendix algorithm on the rewriting system
represented by a :any:`KnuthBendixRewriteTrie` instance by considering all overlaps of a
given length :math:`n` (according to the :any:`libsemigroups_pybind11.overlap`) before those overlaps
given length :math:`n` (according to the type of :any:`overlap`) before those overlaps
of length :math:`n + 1`.
:param kb: the :any:`KnuthBendixRewriteTrie` instance.
:type kb: KnuthBendixRewriteTrie
.. seealso:: :any:`KnuthBendixRewriteTrie.overlap_policy`
)pbdoc");
m.def(
"knuth_bendix_is_reduced",
Expand Down

0 comments on commit 8e4c098

Please sign in to comment.