Skip to content

Commit

Permalink
verify: renaming some python files to conform to naming converntions.
Browse files Browse the repository at this point in the history
  • Loading branch information
unhyperbolic committed Feb 18, 2024
1 parent 46ea0f5 commit 2bbefea
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions doc_src/verify_internals.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ more gracefully returning ``False`` or ``None`` in such a case.
Verified canonical cell decompositions
--------------------------------------

.. autofunction:: snappy.verify.verifyCanonical.interval_checked_canonical_triangulation
.. autofunction:: snappy.verify.verifyCanonical.exactly_checked_canonical_retriangulation
.. autofunction:: snappy.verify.verify_canonical.interval_checked_canonical_triangulation
.. autofunction:: snappy.verify.verify_canonical.exactly_checked_canonical_retriangulation

Exact computations for cusp cross sections
------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ def all_translations(self, verified=False, bits_prec=None):
"""

if verified or bits_prec:
# Use the implementation in verify.cuspTranslations that uses
# Use the implementation in verify.cusp_translations that uses
# tetrahedra_shapes and ComplexCuspNeighborhood
return verify.cusp_translations_for_neighborhood(
self, verified=verified, bits_prec=bits_prec)
Expand Down
4 changes: 2 additions & 2 deletions python/verify/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
from .krawczyk_shapes_engine import *

from .verifyHyperbolicity import *
from .verifyCanonical import *
from .cuspTranslations import *
from .verify_canonical import *
from .cusp_translations import *
from .cusp_shapes import *
from .volume import *
from .complex_volume import *
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion python/verify/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def run_doctests(verbose=False, print_info=True):
generate_test_with_shapes_engine(
verify.verifyHyperbolicity,
verify.IntervalNewtonShapesEngine),
verify.verifyCanonical,
verify.verify_canonical,
verify.interval_tree,
volume,
cusp_areas,
Expand Down
File renamed without changes.

0 comments on commit 2bbefea

Please sign in to comment.