No description
Find a file
2015-03-06 13:59:41 +01:00
acb fix for last commit 2015-02-19 18:43:01 +01:00
acb_calc replace makefiles with version based on the improved flint makefiles 2014-08-18 22:53:50 +02:00
acb_hypgeom improve pfq with power series and document 2015-03-05 13:36:41 +01:00
acb_mat more is_real methods; use in acb_mat exp and det 2015-01-18 17:21:23 +01:00
acb_modular implement elliptic_e 2015-03-06 13:59:41 +01:00
acb_poly allow length 0 in rising_ui_series 2015-02-16 15:00:49 +01:00
arb fix for last commit 2015-02-19 18:43:01 +01:00
arb_calc replace makefiles with version based on the improved flint makefiles 2014-08-18 22:53:50 +02:00
arb_mat add matrix charpoly (ported from flint) and randtest methods 2015-01-18 00:14:42 +01:00
arb_poly allow length 0 in rising_ui_series 2015-02-16 15:00:49 +01:00
arf implement incomplete gamma function 2015-01-21 16:14:46 +01:00
bernoulli clean up bernoulli.h: use prefix for helper functions to avoid potential naming conflicts 2014-11-11 03:01:57 +01:00
doc implement elliptic_e 2015-03-06 13:59:41 +01:00
examples fix memory leak in example program 2015-02-13 16:17:00 +01:00
fmpr replace makefiles with version based on the improved flint makefiles 2014-08-18 22:53:50 +02:00
fmprb remove more old files, and move things around 2014-09-25 15:36:55 +02:00
fmpz_extras replace makefiles with version based on the improved flint makefiles 2014-08-18 22:53:50 +02:00
hypgeom remove two obsolete helper functions 2014-12-07 03:16:25 +01:00
mag factor out mag_polylog_tail 2015-01-16 09:29:10 +01:00
partitions replace makefiles with version based on the improved flint makefiles 2014-08-18 22:53:50 +02:00
acb.h add acb_rel_accuracy_bits and improve the real version 2015-02-19 18:15:47 +01:00
acb_calc.h add acb_calc and integrals example programs 2014-06-19 16:17:32 +02:00
acb_hypgeom.h improve pfq with power series and document 2015-03-05 13:36:41 +01:00
acb_mat.h more is_real methods; use in acb_mat exp and det 2015-01-18 17:21:23 +01:00
acb_modular.h implement elliptic_e 2015-03-06 13:59:41 +01:00
acb_poly.h fix missing const 2015-02-16 15:06:26 +01:00
arb.h make cached constants more consistent after they have been recomputed to higher precision 2015-03-05 15:12:35 +01:00
arb_calc.h arb_calc module 2014-06-19 15:43:48 +02:00
arb_mat.h add matrix charpoly (ported from flint) and randtest methods 2015-01-18 00:14:42 +01:00
arb_poly.h add arb/acb_poly_add_si 2015-02-15 05:00:31 +01:00
arf.h implement incomplete gamma function 2015-01-21 16:14:46 +01:00
bernoulli.h clean up bernoulli.h: use prefix for helper functions to avoid potential naming conflicts 2014-11-11 03:01:57 +01:00
config.h replace makefiles with version based on the improved flint makefiles 2014-08-18 22:53:50 +02:00
configure fix for FLINT_INC_DIR in configure (hopefully) 2014-08-25 18:36:06 +02:00
fmpr.h try to silence clang warning 2015-01-15 15:27:50 +01:00
fmprb.h remove more old files, and move things around 2014-09-25 15:36:55 +02:00
fmpz_extras.h move out fmpz_lshift_mpn and test 2014-05-19 14:49:31 +02:00
gpl-2.0.txt first commit 2012-04-05 15:57:19 +02:00
hypgeom.h use mag methods for hypgeom bounding code; add arb_hypgeom_sum methods 2014-06-12 20:23:36 +02:00
mag.h factor out mag_polylog_tail 2015-01-16 09:29:10 +01:00
Makefile.in fix (?) for static build on OS X 2015-02-21 23:35:30 +01:00
Makefile.subdirs replace makefiles with version based on the improved flint makefiles 2014-08-18 22:53:50 +02:00
partitions.h port partition function to new types 2014-06-17 16:25:54 +02:00
README some documentation updates 2013-05-31 19:40:05 +02: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 can be built as a standalone library,
or as part of FLINT as an optional extension package.

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.