aboutsummaryrefslogtreecommitdiffstats
path: root/extension/intdiv.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix memory management of GMP/MPFR values for extensions.Arnold D. Robbins2022-02-251-3/+0
|
* Update copyright year in a bunch of files.Arnold D. Robbins2021-10-271-1/+1
|
* Doc that API get_mpfr and get_mpz are obsolete.Arnold D. Robbins2020-07-261-8/+3
|
* Fix memory leak in intdiv extension. Update doc.Arnold D. Robbins2020-07-131-0/+7
|
* Update copyright years that should have been updated before 4.2.1 release.Arnold D. Robbins2018-03-131-0/+25
|
* Add warning to intdiv extension when loss of precision may occur.Andrew J. Schorr2018-02-111-2/+13
|
* Remove incorrect * on ext_id in extensions and in doc.Arnold D. Robbins2018-01-111-1/+1
|
* Fix intdiv.c to compile for MPFR 2.4.1.Arnold D. Robbins2017-12-241-0/+5
|
* Stop including <gmp.h> in the intdiv extension, since <mpfr.h> grabs this ↵Andrew J. Schorr2017-08-111-1/+0
| | | | for us.
* Fix initialization in intdiv extension, since MPFR version check is now ↵Andrew J. Schorr2017-08-101-13/+1
| | | | automatic.
* Rename intdiv to intdiv0, require it to be configured in.Arnold D. Robbins2017-04-161-1/+1
|
* In the intdiv extension, division by zero now gives a warning and returns -1 ↵Andrew J. Schorr2017-04-141-4/+12
| | | | instead of throwing a fatal error.
* For intdiv mpfr division by zero, call fatal without further ado.Andrew J. Schorr2017-04-131-9/+1
|
* Make MPFR division by zero fatal in intdiv.c. Some other cleanups.Arnold D. Robbins2017-04-131-3/+12
|
* Enhance API to support extended-precision arithmetic and implement intdiv as ↵Andrew J. Schorr2017-01-061-0/+206
a demonstration.