Skip to content

Commit a8d3d65

Browse files
Joseph-Edwardsjames-d-mitchell
authored andcommitted
Presentation -> PresentationStrings
1 parent 552488b commit a8d3d65

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

src/kambites.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ contained in the congruence, but that this is not currently known.
189189
py::arg("knd"),
190190
py::arg("p"),
191191
R"pbdoc(
192-
:sig=(self: Kambites, knd: congruence_kind, p: Presentation) -> Kambites:
192+
:sig=(self: Kambites, knd: congruence_kind, p: PresentationStrings) -> Kambites:
193193
:only-document-once:
194194
195195
Re-initialize a :any:`Kambites` instance.

src/knuth-bendix.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ constructed.
364364
py::arg("knd"),
365365
py::arg("p"),
366366
R"pbdoc(
367-
:sig=(self: KnuthBendixRewriteTrie, knd: congruence_kind, p: Presentation) -> KnuthBendixRewriteTrie:
367+
:sig=(self: KnuthBendixRewriteTrie, knd: congruence_kind, p: PresentationStrings) -> KnuthBendixRewriteTrie:
368368
:only-document-once:
369369
370370
Re-initialize a KnuthBendix instance.
@@ -377,7 +377,7 @@ that it would have been in if it had just been newly constructed from *knd* and
377377
:type knd: congruence_kind
378378
379379
:param p: the presentation.
380-
:type p: Presentation
380+
:type p: PresentationStrings
381381
382382
:returns: ``self``.
383383
:rtype: KnuthBendix
@@ -394,7 +394,7 @@ that it would have been in if it had just been newly constructed from *knd* and
394394
py::arg("knd"),
395395
py::arg("p"),
396396
R"pbdoc(
397-
:sig=(self: KnuthBendixRewriteTrie, knd: congruence_kind, p: Presentation) -> KnuthBendixRewriteTrie:
397+
:sig=(self: KnuthBendixRewriteTrie, knd: congruence_kind, p: PresentationStrings) -> KnuthBendixRewriteTrie:
398398
:only-document-once:
399399
)pbdoc")
400400
.def(

src/obvinf.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ namespace libsemigroups {
4242
:sig=(p: PresentationStrings) -> bool:
4343
4444
Function for checking if the finitely presented semigroup or monoid
45-
defined by a :any:`Presentation` object is obviously infinite or not.
45+
defined by a :any:`PresentationStrings` object is obviously infinite or not.
4646
4747
This function returns ``True`` if the finitely presented semigroup or
48-
monoid defined by the :any:`Presentation` object *p* is obviously infinite.
48+
monoid defined by the :any:`PresentationStrings` object *p* is obviously infinite.
4949
5050
:param p: the presentation.
5151
:type p: Presentation
@@ -73,10 +73,10 @@ monoid defined by the :any:`Presentation` object *p* is obviously infinite.
7373
:only-document-once:
7474
7575
Function for checking if the finitely presented semigroup or monoid
76-
defined by a :any:`Presentation` object is obviously infinite or not.
76+
defined by a :any:`PresentationStrings` object is obviously infinite or not.
7777
7878
This function returns ``True`` if the finitely presented semigroup or
79-
monoid defined by the :any:`Presentation` object *p* is obviously infinite.
79+
monoid defined by the :any:`PresentationStrings` object *p* is obviously infinite.
8080
8181
:param p: the presentation.
8282
:type p: Presentation

src/present.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1235,7 +1235,7 @@ Construct an InversePresentationStrings from a Presentation reference.
12351235
12361236
Construct an :any:`InversePresentationStrings` , initially with empty inverses, from a :any:`PresentationStrings`.
12371237
1238-
:param p: the Presentation to construct from.
1238+
:param p: the presentation to construct from.
12391239
:type p: PresentationStrings
12401240
)pbdoc");
12411241
thing.def(py::init<>(), R"pbdoc(

0 commit comments

Comments
 (0)