Merge remote branch 'origin/master'

This commit is contained in:
Fredrik Johansson 2014-06-20 13:26:40 +02:00
commit ab0e2d85e3
3 changed files with 13 additions and 0 deletions

View file

@ -25,6 +25,8 @@
#include "arb.h"
void arb_zeta_inv_ui_euler_product(arb_t z, ulong s, long prec);
void
arb_bernoulli_ui_zeta(arb_t b, ulong n, long prec)
{

View file

@ -25,6 +25,8 @@
#include "arb.h"
void arb_get_mag_infimum_lower(mag_t z, const arb_t x);
#define BIG_EXPONENT_BITS 20
#define BIG_EXPONENT (1L << BIG_EXPONENT_BITS)

View file

@ -117,6 +117,10 @@ Sample output::
1000: 2.3260531616864664574065046940832238158044982041872 +/- 3.927e-08
virt/peak/res/peak(MB): 170.18 294.69 7.51 7.51
keiper_li2.c
-------------------------------------------------------------------------------
Like keiper_li.c, but uses Arb 2.x types.
real_roots.c
-------------------------------------------------------------------------------
@ -233,6 +237,11 @@ but will never find all of them since there are infinitely many::
Remark: the program always computes rigorous containing intervals
for the roots, but the accuracy after refinement could be less than *d* digits.
real_roots2.c
-------------------------------------------------------------------------------
Like real_roots.c, but uses Arb 2.x types.
poly_roots.c
-------------------------------------------------------------------------------