Skip to content

Commit

Permalink
Try to fix test failure with precision in newer sage releases.
Browse files Browse the repository at this point in the history
  • Loading branch information
culler committed Dec 14, 2023
1 parent 24926a9 commit 579beac
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cython/core/manifold.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -116,16 +116,16 @@ cdef class Manifold(Triangulation):
EXAMPLE::
sage: M = Manifold('m004')
sage: M.volume().parent()
Real Field with 53 bits of precision
sage: M.volume().parent() # doctest: +ELLIPSIS
Real Field with ... bits of precision
sage: Manifold.use_field_conversion('snappy')
sage: M = Manifold('m004')
sage: M.volume().parent()
SnapPy Numbers with 53 bits precision
sage: M.volume().parent() # doctest: +ELLIPSIS
SnapPy Numbers with ... bits of precision
sage: Manifold.use_field_conversion('sage')
sage: M = Manifold('m004')
sage: M.volume().parent()
Real Field with 53 bits of precision
sage: M.volume().parent() # doctest: +ELLIPSIS
Real Field with ... bits of precision
"""
number.use_field_conversion(func)

Expand Down

0 comments on commit 579beac

Please sign in to comment.