From b4f0624d6121601302314b8b8ca2b355f9459275 Mon Sep 17 00:00:00 2001 From: Fredrik Johansson Date: Fri, 20 Jun 2014 13:09:21 +0200 Subject: [PATCH] minor --- arb/bernoulli_ui_zeta.c | 2 ++ arb/log.c | 2 ++ doc/source/examples.rst | 9 +++++++++ 3 files changed, 13 insertions(+) diff --git a/arb/bernoulli_ui_zeta.c b/arb/bernoulli_ui_zeta.c index 616475f7..d6ebdb62 100644 --- a/arb/bernoulli_ui_zeta.c +++ b/arb/bernoulli_ui_zeta.c @@ -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) { diff --git a/arb/log.c b/arb/log.c index 9b8a03cd..6bc7ff14 100644 --- a/arb/log.c +++ b/arb/log.c @@ -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) diff --git a/doc/source/examples.rst b/doc/source/examples.rst index 349932de..d7f8f677 100644 --- a/doc/source/examples.rst +++ b/doc/source/examples.rst @@ -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 -------------------------------------------------------------------------------