No description
Find a file
2015-11-06 11:14:00 +00:00
acb long -> slong for acb/ and acb/test. 2015-11-05 17:43:36 +00:00
acb_calc long -> slong in acb_calc/ and acb_calc/test. 2015-11-05 17:45:18 +00:00
acb_hypgeom long -> slong in acb_hypgeom/ and acb_hypgeom/test/. 2015-11-05 17:46:43 +00:00
acb_mat long -> slong in acb_mat/ and acb_mat/test. 2015-11-05 17:47:49 +00:00
acb_modular long -> slong in acb_modular/ and acb_modular/test/. 2015-11-05 17:49:06 +00:00
acb_poly long -> slong in acb_poly/ and acb_poly/test/. 2015-11-05 17:51:23 +00:00
arb long -> slong in arb/ and arb/test/. 2015-11-05 17:54:24 +00:00
arb_calc long -> slong in arb_calc/ and arb_calc/test/. 2015-11-05 17:56:52 +00:00
arb_mat long -> slong in arb_mat/ and arb_mat/test/. 2015-11-05 17:57:50 +00:00
arb_poly long -> slong in arb_poly/ and arb_poly/test/. 2015-11-05 17:59:29 +00:00
arf long -> slong in arf/ and arf/test/. 2015-11-05 18:00:39 +00:00
bernoulli long -> slong in bernoulli/ and bernoulli/test/. 2015-11-05 18:01:09 +00:00
doc implement arb_contains_int and acb_contains_int 2015-11-04 16:08:27 +01:00
examples long -> slong in examples/. 2015-11-05 18:02:07 +00:00
fmpr long -> slong in fmpr/ and fmpr/test/. 2015-11-05 18:03:08 +00:00
fmprb long -> slong in fmprb/ and fmprb/test/. 2015-11-05 18:04:06 +00:00
fmpz_extras long -> slong in fmpz_extras/ and fmpz_extras/test/. 2015-11-05 18:04:40 +00:00
hypgeom long -> slong in hypgeom/. 2015-11-05 18:05:23 +00:00
mag long -> slong in mag/ and mag/test/. 2015-11-05 18:06:54 +00:00
partitions long -> slong in partitions/ and partitions/test/. 2015-11-05 18:07:38 +00:00
acb.h long -> slong acb.h. 2015-11-06 11:11:35 +00:00
acb_calc.h long -> slong acb_calc.h. 2015-11-06 11:12:00 +00:00
acb_hypgeom.h long -> slong acb_hypgeom.h. 2015-11-06 11:12:25 +00:00
acb_mat.h long -> slong acb_mat.h. 2015-11-06 11:12:43 +00:00
acb_modular.h long -> slong acb_modular.h. 2015-11-06 11:13:02 +00:00
acb_poly.h long -> slong acb_poly.h. 2015-11-06 11:13:20 +00:00
arb.h long -> slong arb.h. 2015-11-06 11:14:00 +00:00
arb_calc.h long -> slong arb_calc.h. 2015-11-06 11:13:44 +00:00
arb_mat.h Add arb_mat_eq and arb_mat_ne 2015-10-09 05:59:23 +02:00
arb_poly.h implement the Fujiwara root bound 2015-07-22 13:24:08 +02:00
arf.h add arf_root and improve arb_root 2015-06-17 18:37:53 +02:00
bernoulli.h un-inline two functions in the bernoulli module 2015-09-23 15:03:50 +02:00
configure version the library - patch by Julien Puydt 2015-10-14 12:21:23 +02:00
fmpr.h try to silence clang warning 2015-01-15 15:27:50 +01:00
fmprb.h port the div_2expm1_ui code completely to the arb type 2015-07-21 18:05:30 +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 add mag_geom_series 2015-09-17 12:51:02 +02:00
Makefile.in version the library - patch by Julien Puydt 2015-10-14 12:21:23 +02: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.