From 9714099955dd9586ffd9976398e10e2d72a60e4f Mon Sep 17 00:00:00 2001 From: Matthias Goerner <1239022+unhyperbolic@users.noreply.github.com> Date: Fri, 13 Oct 2023 11:31:47 -0700 Subject: [PATCH] Fixing error message for Alexander polynomial. --- python/snap/nsagetools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/snap/nsagetools.py b/python/snap/nsagetools.py index 8d10e42bc..ad312a041 100644 --- a/python/snap/nsagetools.py +++ b/python/snap/nsagetools.py @@ -338,7 +338,7 @@ def alexander_polynomial(manifold, **kwargs): if manifold.homology().order() != 'infinite': raise ValueError( "Alexander polynomial only defined for manifolds with " - "infinite fundamental group") + "infinite homology.") ans = alexander_polynomial_group(manifold.fundamental_group(**kwargs)) coeffs = ans.coefficients()