We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5653195 commit c580bddCopy full SHA for c580bdd
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
ReportGuard,
@@ -424,5 +425,6 @@ def test_braid_group():
424
425
426
p = examples.braid_group(3)
427
assert len(p.alphabet()) == 4
- tc = ToddCoxeter(congruence_kind.twosided, p)
428
- assert tc.number_of_classes() == POSITIVE_INFINITY
+ if LIBSEMIGROUPS_EIGEN_ENABLED:
429
+ tc = ToddCoxeter(congruence_kind.twosided, p)
430
+ assert tc.number_of_classes() == POSITIVE_INFINITY
0 commit comments