arb
arb copied to clipboard
Arb has been merged into FLINT -- use https://github.com/flintlib/flint/ instead
I tried to update my flint-arb package in Debian and was notified that it used rpath. As far as I know, rpath is a way to point to internal sublibraries,...
... so that the system FLINT older than 2.9 is rejected
* Implement the improved division algorithm from https://dl.acm.org/doi/pdf/10.1145/800205.806321 (or something similar) * Optimize gcd_euclidean_improved up to 2 or more words * Optimize gcd_binary and extend the range * Lehmer GCD...
``` -- The C compiler identification is GNU 12.1.1 -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working C compiler: /usr/bin/x86_64-pc-linux-gnu-gcc...
Things to do in the future: * Move all elementary function internals to a separate module since it's a lot of code that doesn't need to be visible in arb.h...
The Mittag-Leffler function would be nice to have. Like the Lerch transcendent, it can be computed via a Hankel-like integral. One just needs to work out the details for the...
* Threaded matrix multiplication should use the thread pool (that goes for acb_poly/powsum_series_naive_threaded and acb_dft/rad2_threaded, BTW) * Re-tune cutoffs (both single-threaded and multi-threaded), in light of recent improvements (or regressions?)...
Hi! Is there any documentation about the algorithms behind arb, or the time complexity of the operations and functions inside it? thanks!
Hi, could you add a function that initialize an arb variable from __float128 and __complex128 types that supported by GCC compiler? And also a function that converts back? I've experimented...
Hi, I am trying to extend the real_root.c example to finding the root of f(x)=sinh(2*J*x)sinh(2*K*x)-1 for J=K=1. To create this function, I do ``` _arb_poly_sinh_series(out, x, xlen, order, prec); _arb_poly_sinh_series(factor2,...