Skip to content

Commit 923d2ab

Browse files
tornariadimpase
authored andcommitted
Restore prec_words_to_dec as deprecated function.
1 parent dfd9d75 commit 923d2ab

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

cypari2/pari_instance.pyx

+29
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,35 @@ cpdef long default_bitprec() noexcept:
380380
return DEFAULT_BITPREC
381381

382382

383+
def prec_words_to_dec(long prec_in_words):
384+
r"""
385+
Deprecated internal function.
386+
387+
Convert from precision expressed in words to precision expressed in
388+
decimal. Note: this adjusts for the two codewords of a pari real,
389+
and is architecture-dependent.
390+
391+
Examples:
392+
393+
>>> from cypari2.pari_instance import prec_words_to_dec
394+
>>> import sys
395+
>>> import warnings
396+
>>> warnings.simplefilter("ignore")
397+
>>> bitness = '64' if sys.maxsize > (1 << 32) else '32'
398+
>>> prec_words_to_dec(5) == (28 if bitness == '32' else 57)
399+
True
400+
401+
>>> ans32 = [(3, 9), (4, 19), (5, 28), (6, 38), (7, 48), (8, 57), (9, 67)]
402+
>>> ans64 = [(3, 19), (4, 38), (5, 57), (6, 77), (7, 96), (8, 115), (9, 134)]
403+
>>> [(n, prec_words_to_dec(n)) for n in range(3, 10)] == (ans32 if bitness == '32' else ans64)
404+
True
405+
"""
406+
from warnings import warn
407+
warn("'prec_words_to_dec` in cypari2 is internal and deprecated",
408+
DeprecationWarning)
409+
return prec_bits_to_dec(prec_words_to_bits(prec_in_words))
410+
411+
383412
# Callbacks from PARI to print stuff using sys.stdout.write() instead
384413
# of C library functions like puts().
385414
cdef PariOUT python_pariOut

0 commit comments

Comments
 (0)