blob: 4a5ae2539400558824c7262ec50a69915e783d6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
New functions to implement:
- mpfr_mul_mpz, mpfr_div_mpz
Miscellaneous:
- implement a C++ wrapper [see with Torbjo"rn and/or Fabrice]
- for all instructions that call malloc/realloc/etc, handle error cases
(for example return an int indicating if an error occurred)
- in all functions that do rounding, return an int indicating if the result
is exact (i.e. no bit was lost) or not (like in mpfr_div_ui)
- detect overflow/underflow in exponent (from Ben Hinkle <bhinkle4@juno.com>)
- specify exponent size (suggestion from Ben Hinkle <bhinkle4@juno.com>)
|