We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d79ef50 commit 8f7236eCopy full SHA for 8f7236e
2 files changed
src/libsemigroups_pybind11/__init__.py
@@ -53,6 +53,7 @@
53
54
try:
55
from _libsemigroups_pybind11 import (
56
+ LIBSEMIGROUPS_EIGEN_ENABLED,
57
LIBSEMIGROUPS_HPCOMBI_ENABLED,
58
LIMIT_MAX,
59
NEGATIVE_INFINITY,
tests/test_presentation_examples.py
@@ -13,6 +13,7 @@
13
import pytest
14
15
from libsemigroups_pybind11 import (
16
17
POSITIVE_INFINITY,
18
LibsemigroupsError,
19
Presentation,
@@ -456,5 +457,6 @@ def test_braid_group():
456
457
458
p = examples.braid_group(3)
459
assert len(p.alphabet()) == 4
- tc = ToddCoxeter(congruence_kind.twosided, p)
460
- assert tc.number_of_classes() == POSITIVE_INFINITY
+ if LIBSEMIGROUPS_EIGEN_ENABLED:
461
+ tc = ToddCoxeter(congruence_kind.twosided, p)
462
+ assert tc.number_of_classes() == POSITIVE_INFINITY
0 commit comments