No description
Find a file
Fredrik Johansson 2c36ae84f6 add a todo item
2013-05-31 17:37:59 +02:00
bernoulli support gmp 2013-05-07 17:41:32 +01:00
doc arb-based cosine minpoly calculation 2013-05-31 17:33:12 +02:00
elefun arb-based cosine minpoly calculation 2013-05-31 17:33:12 +02:00
fmpcb more simple interfaces for zeta functions; implement functional equation 2013-03-27 18:25:00 +01:00
fmpcb_mat add the fmpcb_mat module, and various helper functions 2012-11-07 16:07:22 +01:00
fmpcb_poly add missing polynomial subtraction methods, make sure to always round when adding/subtracting 2013-05-28 17:36:38 +02:00
fmpr use TLS_PREFIX 2013-05-28 17:45:52 +02:00
fmprb arb-based cosine minpoly calculation 2013-05-31 17:33:12 +02:00
fmprb_mat add the fmpcb_mat module, and various helper functions 2012-11-07 16:07:22 +01:00
fmprb_poly add missing polynomial subtraction methods, make sure to always round when adding/subtracting 2013-05-28 17:36:38 +02:00
fmpz_extras add dummy file to make sure fmpz_extras isn't empty 2013-05-11 18:15:53 +01:00
fmpz_holonomic sublinear evaluation of nth entry mod p 2012-10-18 12:29:11 +02:00
gamma disable TLS if disabled in flint 2013-04-27 21:07:57 +02:00
hypgeom don't use doubles for the hypgeom root bound 2013-03-27 15:07:18 +01:00
partitions remove duplicated code 2013-05-29 18:55:49 +02:00
zeta avoid unnecessarily high precision, silence debug message 2013-04-26 16:51:37 +02:00
bernoulli.h disable TLS if disabled in flint 2013-04-27 21:07:57 +02:00
configure support gmp 2013-05-07 17:41:32 +01:00
elefun.h arb-based cosine minpoly calculation 2013-05-31 17:33:12 +02:00
fmpcb.h add missing polynomial subtraction methods, make sure to always round when adding/subtracting 2013-05-28 17:36:38 +02: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 missing polynomial subtraction methods, make sure to always round when adding/subtracting 2013-05-28 17:36:38 +02:00
fmpr.h first version of rewritten fmpr_add (needs more cleanup, and code reuse in fmpr_sub etc) 2013-05-27 16:21:37 +02:00
fmprb.h add missing polynomial subtraction methods, make sure to always round when adding/subtracting 2013-05-28 17:36:38 +02:00
fmprb_mat.h add fmprb_mat_pow_ui, contains_fmpz_mat 2012-10-18 10:39:30 +02:00
fmprb_poly.h add missing polynomial subtraction methods, make sure to always round when adding/subtracting 2013-05-28 17:36:38 +02:00
fmpz_extras.h add _fmpr_set_round_mpn, and simplify the implementation of fmpr_mul 2013-05-24 17:26:54 +02:00
fmpz_holonomic.h sublinear evaluation of nth entry mod p 2012-10-18 12:29:11 +02:00
gamma.h disable TLS if disabled in flint 2013-04-27 21:07:57 +02: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 some work-in-progress code to support faster low-precision elementary functions 2013-05-17 19:22:38 +02:00
partitions.h initial port of partition function (needs more work) 2013-04-26 18:20:47 +02:00
README mention flint-devel in README 2013-05-06 13:48:14 +01:00
todo.txt add a todo item 2013-05-31 17:37:59 +02:00
zeta.h reorg zeta related functions 2013-03-27 15:54:05 +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/

Bug reports, feature requests and other comments are welcome on the
FLINT mailing list: flint-devel@googlegroups.com

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

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