Skip to content

Commit fc4d91a

Browse files
Remove ReversiblePaths
1 parent aea3740 commit fc4d91a

File tree

7 files changed

+1
-488
lines changed

7 files changed

+1
-488
lines changed

docs/source/conf.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,6 @@ def no_doc_run(self):
180180
],
181181
"FroidurePinPBR": [(r"\bPBR\b", "Element")],
182182
"SchreierSimsPerm1": [(r"\bPerm1\b", "Element")],
183-
"ReversiblePaths": [(r"\bPaths\b", "ReversiblePaths")],
184183
}
185184

186185
# This is what sphinx considers to be a signature

docs/source/data-structures/word-graph/paths/reversible-paths.rst

Lines changed: 0 additions & 40 deletions
This file was deleted.

libsemigroups_pybind11/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999

100100
# The following are imported from path since we modify the methods count and max
101101
# to return the POSITIVE_INFINITY object where applicable.
102-
from .paths import Paths, ReversiblePaths
102+
from .paths import Paths
103103
from .todd_coxeter import ToddCoxeter
104104

105105
# The following fools sphinx into thinking that MatrixKind is not an alias.

libsemigroups_pybind11/paths.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,10 @@
1515

1616
from _libsemigroups_pybind11 import (
1717
Paths,
18-
ReversiblePaths,
1918
)
2019

2120
from .detail.decorators import may_return_positive_infinity
2221

2322

2423
Paths.count = may_return_positive_infinity(Paths.count)
2524
Paths.max = may_return_positive_infinity(Paths.max)
26-
27-
ReversiblePaths.count = may_return_positive_infinity(ReversiblePaths.count)
28-
ReversiblePaths.max = may_return_positive_infinity(ReversiblePaths.max)

0 commit comments

Comments
 (0)