No description
Find a file
Fredrik Johansson 59b1642cdd Revert "Added soname versioning"
This reverts commit 2596a0ed41.
2015-10-11 12:49:32 +02:00
acb complex sqrt(finite) -> finite 2015-08-26 13:43:50 +02:00
acb_calc replace makefiles with version based on the improved flint makefiles 2014-08-18 22:53:50 +02:00
acb_hypgeom erf: fix precision bug resulting in +/-inf for huge imaginary input 2015-10-05 02:51:27 +02:00
acb_mat Add acb_mat_set/set_round_arb_mat 2015-10-09 16:11:01 +02:00
acb_modular faster code for theta constants 2015-10-11 00:14:54 +02:00
acb_poly acb_poly_validate_real_roots 2015-10-07 14:44:47 +02:00
arb improve add_error functions, and test them 2015-09-21 02:51:52 +02:00
arb_calc replace makefiles with version based on the improved flint makefiles 2014-08-18 22:53:50 +02:00
arb_mat Add arb_mat_eq and arb_mat_ne 2015-10-09 05:59:23 +02:00
arb_poly implement the Fujiwara root bound 2015-07-22 13:24:08 +02:00
arf arf_get_d: correct under/overflow, and allow round-to-nearest 2015-10-02 11:29:43 +02:00
bernoulli un-inline two functions in the bernoulli module 2015-09-23 15:03:50 +02:00
doc fix typo 2015-10-11 00:22:16 +02: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 port the div_2expm1_ui code completely to the arb type 2015-07-21 18:05:30 +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 add mag_geom_series 2015-09-17 12:51:02 +02:00
partitions replace makefiles with version based on the improved flint makefiles 2014-08-18 22:53:50 +02:00
acb.h add more useful methods 2015-10-02 09:46:02 +02:00
acb_calc.h add acb_calc and integrals example programs 2014-06-19 16:17:32 +02:00
acb_hypgeom.h implement binary splitting acb_hypgeom summation 2015-07-13 15:47:04 +02:00
acb_mat.h Add acb_mat_eq/ne 2015-10-09 15:57:11 +02:00
acb_modular.h faster code for theta constants 2015-10-11 00:14:54 +02:00
acb_poly.h acb_poly_validate_real_roots 2015-10-07 14:44:47 +02:00
arb.h add more useful methods 2015-10-02 09:46:02 +02:00
arb_calc.h arb_calc module 2014-06-19 15:43:48 +02: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 Revert "Added soname versioning" 2015-10-11 12:49:32 +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 Revert "Added soname versioning" 2015-10-11 12:49:32 +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.