Skip to content

Commit

Permalink
Making new implementation of maximal cusp area matrix the default.
Browse files Browse the repository at this point in the history
  • Loading branch information
unhyperbolic committed Aug 3, 2023
1 parent 14dbcf5 commit 124c3a3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ def identify(self, extends_to_link=False):
Manifold.verify_hyperbolicity = verify.verify_hyperbolicity
ManifoldHP.verify_hyperbolicity = verify.verify_hyperbolicity

from .cusps.maximal_cusp_area_matrix import maximal_cusp_area_matrix

def canonical_retriangulation(
manifold, verified=False,
Expand Down Expand Up @@ -378,6 +379,9 @@ def cusp_area_matrix(manifold, method='trigDependentTryCanonize',
"""

if method == 'maximal':
return maximal_cusp_area_matrix(
manifold, bits_prec=bits_prec, verified=verified)
if method == 'maximalLegacy':
if not verified:
raise NotImplementedError("Maximal cusp area matrix only "
"available as verified computation. "
Expand Down

0 comments on commit 124c3a3

Please sign in to comment.