File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
src/libsemigroups_pybind11 Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 5353
5454try :
5555 from _libsemigroups_pybind11 import (
56+ LIBSEMIGROUPS_EIGEN_ENABLED ,
5657 LIBSEMIGROUPS_HPCOMBI_ENABLED ,
5758 LIMIT_MAX ,
5859 NEGATIVE_INFINITY ,
Original file line number Diff line number Diff line change 1313import pytest
1414
1515from libsemigroups_pybind11 import (
16+ LIBSEMIGROUPS_EIGEN_ENABLED ,
1617 POSITIVE_INFINITY ,
1718 LibsemigroupsError ,
1819 Presentation ,
@@ -456,5 +457,6 @@ def test_braid_group():
456457
457458 p = examples .braid_group (3 )
458459 assert len (p .alphabet ()) == 4
459- tc = ToddCoxeter (congruence_kind .twosided , p )
460- assert tc .number_of_classes () == POSITIVE_INFINITY
460+ if LIBSEMIGROUPS_EIGEN_ENABLED :
461+ tc = ToddCoxeter (congruence_kind .twosided , p )
462+ assert tc .number_of_classes () == POSITIVE_INFINITY
You can’t perform that action at this time.
0 commit comments