No description
Find a file
2013-02-17 18:23:29 +01:00
bernoulli change a #define to uppercase 2013-02-13 07:56:56 +01:00
doc add some more fmpcb helper functions 2013-02-17 18:23:29 +01:00
fmpcb implement squaring formula and reduce number of temporaries in fmpcb_mul 2013-02-16 02:24:39 +01:00
fmpcb_mat add the fmpcb_mat module, and various helper functions 2012-11-07 16:07:22 +01:00
fmpcb_poly fix some unused variable warnings 2013-01-26 21:11:31 +01:00
fmpr add fmpz_extras module to collect fmpz helper functions 2013-02-17 17:58:15 +01:00
fmprb add fmpz_extras module to collect fmpz helper functions 2013-02-17 17:58:15 +01:00
fmprb_mat add the fmpcb_mat module, and various helper functions 2012-11-07 16:07:22 +01:00
fmprb_poly make use of the improved set_round functions 2013-01-09 18:02:38 +01:00
fmpz_extras add fmpz_extras module to collect fmpz helper functions 2013-02-17 17:58:15 +01:00
fmpz_holonomic sublinear evaluation of nth entry mod p 2012-10-18 12:29:11 +02:00
gamma code for computing the gamma function using Taylor series (wip) 2013-02-14 18:53:31 +01:00
hypgeom tidy up float conversion functions 2013-02-05 15:10:27 +01:00
bernoulli.h change a #define to uppercase 2013-02-13 07:56:56 +01:00
configure fix hardcoded path 2012-09-16 01:51:40 +02:00
fmpcb.h add some more fmpcb helper functions 2013-02-17 18:23:29 +01:00
fmpcb_mat.h add the fmpcb_mat module, and various helper functions 2012-11-07 16:07:22 +01:00
fmpcb_poly.h add fmprb_contains and versions; fix a bug; test code for find_roots 2012-11-16 15:12:54 +01:00
fmpr.h add fmpz_extras module to collect fmpz helper functions 2013-02-17 17:58:15 +01:00
fmprb.h move hypgeom code to its own module, +improvements and docs 2013-01-23 15:54:38 +01:00
fmprb_mat.h add fmprb_mat_pow_ui, contains_fmpz_mat 2012-10-18 10:39:30 +02:00
fmprb_poly.h add fmprb_poly_set_si 2012-12-11 15:32:31 +01:00
fmpz_extras.h fix a missing include 2013-02-17 18:16:34 +01:00
fmpz_holonomic.h sublinear evaluation of nth entry mod p 2012-10-18 12:29:11 +02:00
gamma.h code for computing the gamma function using Taylor series (wip) 2013-02-14 18:53:31 +01:00
gpl-2.0.txt first commit 2012-04-05 15:57:19 +02:00
hypgeom.h move hypgeom code to its own module, +improvements and docs 2013-01-23 15:54:38 +01:00
Makefile.in add fmpz_extras module to collect fmpz helper functions 2013-02-17 17:58:15 +01:00
README call this 0.4 2013-01-26 21:22:36 +01:00
todo.txt some text changes; call this 0.3 2012-11-07 18:25:32 +01:00

Arb is a C library for high-performance arbitrary-precision floating-point ball
(mid-rad interval) arithmetic. It supports complex numbers, polynomials,
matrices, and evaluation of special functions, all with rigorous error
bounding.

Arb depends on FLINT (http://flintlib.org/), MPIR (http://mpir.org)
and MPFR (http://mpfr.org). It is currently built as a standalone library,
but in the future might become an extension module for FLINT.

For documentation and additional details, see: http://fredrikj.net/arb/

Development updates are occasionally posted to: http://fredrikj.net/blog/

Author: Fredrik Johansson <fredrik.johansson@gmail.com>

The build scripts are copied from FLINT and were written by Bill Hart.