No description
Find a file
wbhart 9b407322aa Put LDFLAGS and LIBS2 in same order as in Flint.
It seems the order of LDFLAGS and LIBS2 may be critical.
2015-11-19 20:58:48 +01:00
acb long -> slong return values. 2015-11-10 13:41:43 +00:00
acb_calc printf -> flint_printf, sprintf -> flint_sprintf, fprintf -> flint_fprintf. 2015-11-06 16:17:27 +00:00
acb_hypgeom initial code for Airy functions 2015-11-19 11:10:22 +01:00
acb_mat long -> slong return values. 2015-11-10 13:41:43 +00:00
acb_modular static long -> static slong in *.c. 2015-11-10 13:47:58 +00:00
acb_poly long -> slong return values. 2015-11-10 13:41:43 +00:00
arb static long -> static slong in *.c. 2015-11-10 13:47:58 +00:00
arb_calc long -> slong return values. 2015-11-10 13:41:43 +00:00
arb_mat long -> slong return values. 2015-11-10 13:41:43 +00:00
arb_poly long -> slong return values. 2015-11-10 13:41:43 +00:00
arf long -> slong return values. 2015-11-10 13:41:43 +00:00
bernoulli long -> slong return values. 2015-11-10 13:41:43 +00:00
doc update info for real_roots in the documentation 2015-11-19 13:16:57 +01:00
examples add airy functions to real_roots 2015-11-19 13:09:27 +01:00
fmpr Include stdint.h on MinGW64. 2015-11-10 14:37:05 +00:00
fmprb printf -> flint_printf, sprintf -> flint_sprintf, fprintf -> flint_fprintf. 2015-11-06 16:17:27 +00:00
fmpz_extras long -> slong return values. 2015-11-10 13:41:43 +00:00
hypgeom long -> slong return values. 2015-11-10 13:41:43 +00:00
mag printf -> flint_printf, sprintf -> flint_sprintf, fprintf -> flint_fprintf. 2015-11-06 16:17:27 +00:00
partitions static long -> static slong in *.c. 2015-11-10 13:47:58 +00:00
acb.h BLAH_INLINE long -> BLAH_INLINE slong in *.h. 2015-11-10 13:58:05 +00:00
acb_calc.h long -> slong acb_calc.h. 2015-11-06 11:12:00 +00:00
acb_hypgeom.h initial code for Airy functions 2015-11-19 11:10:22 +01:00
acb_mat.h long -> slong return values. 2015-11-10 13:41:43 +00:00
acb_modular.h printf -> flint_printf, sprintf -> flint_sprintf, fprintf -> flint_fprintf. 2015-11-06 16:17:27 +00:00
acb_poly.h long -> slong return values. 2015-11-10 13:41:43 +00:00
arb.h BLAH_INLINE long -> BLAH_INLINE slong in *.h. 2015-11-10 13:58:05 +00:00
arb_calc.h long -> slong return values. 2015-11-10 13:41:43 +00:00
arb_mat.h long -> slong return values. 2015-11-10 13:41:43 +00:00
arb_poly.h BLAH_INLINE long -> BLAH_INLINE slong in *.h. 2015-11-10 13:58:05 +00:00
arf.h BLAH_INLINE long -> BLAH_INLINE slong in *.h. 2015-11-10 13:58:05 +00:00
bernoulli.h long -> slong return values. 2015-11-10 13:41:43 +00:00
configure version the library - patch by Julien Puydt 2015-10-14 12:21:23 +02:00
fmpr.h Include stdint.h on MinGW64. 2015-11-10 14:37:05 +00:00
fmprb.h Inline long -> slong return values. 2015-11-10 13:44:55 +00:00
fmpz_extras.h Inline long -> slong return values. 2015-11-10 13:44:55 +00:00
gpl-2.0.txt first commit 2012-04-05 15:57:19 +02:00
hypgeom.h long -> slong return values. 2015-11-10 13:41:43 +00:00
mag.h printf -> flint_printf, sprintf -> flint_sprintf, fprintf -> flint_fprintf. 2015-11-06 16:17:27 +00:00
Makefile.in Put LDFLAGS and LIBS2 in same order as in Flint. 2015-11-19 20:58:48 +01:00
Makefile.subdirs replace makefiles with version based on the improved flint makefiles 2014-08-18 22:53:50 +02:00
partitions.h long -> slong partition.h. 2015-11-06 11:17:11 +00: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.