diff options
author | Ian Jauslin <ian.jauslin@roma1.infn.it> | 2015-10-07 12:51:41 +0000 |
---|---|---|
committer | Ian Jauslin <ian.jauslin@roma1.infn.it> | 2015-10-07 13:00:23 +0000 |
commit | 469bdc80712dbf9c12562059dc4594620b59a076 (patch) | |
tree | c6da40a884899110d102d82a7a778f2b3afae702 /src/number.h | |
parent | e7aa6859f08565d58684fa4b9c40fed716f0ba17 (diff) |
Support MPFR floats in numkondov1.4
Remove '-D' option (error tolerance) in numkondo
Diffstat (limited to 'src/number.h')
-rw-r--r-- | src/number.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/number.h b/src/number.h index 4095f9c..a33d425 100644 --- a/src/number.h +++ b/src/number.h @@ -98,6 +98,8 @@ int number_is_zero(Number x); // approximate numerical expression long double number_double_val(Number x); +// approximate numerical expression (as mpfr float) +int number_mpfr_val(mpfr_t out, Number x); // print to string int number_sprint(Number number, Char_Array* out); |