Changes between Version 6 and Version 7 of Ticket #9937
- Timestamp:
- 04/12/11 09:28:20 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9937 – Description
v6 v7 15 15 {{{set_real_precision()}}} seems to affect essentially only the precision for evaluating strings in PARI and not much else: 16 16 {{{ 17 sage: pari.set_real_precision(1000); 18 sage: pari.euler().debug() 19 [&=0000000004f75e20] REAL(lg=3):0400000000000003 (+,expo=-1):5fffffffffffffff 93c467e37db0c7a5 17 sage: pari.set_real_precision(50); 18 sage: pari('Euler') # Precision changes 19 0.57721566490153286060651209008240243104215933593992 20 sage: pari.euler() # Precision does NOT change 21 0.5772156649015328607 20 22 }}} 21 23