diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-03-20 20:59:12 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-03-20 20:59:12 -0700 |
commit | fe69004a3798e896cf7349149c6c37ec58676b45 (patch) | |
tree | 4c4e933826096a497cf92b06791779f7a213a149 /arith.c | |
parent | 270dcc27814f4bd80f625b85e9ff91e7c5a8e8a8 (diff) | |
download | txr-fe69004a3798e896cf7349149c6c37ec58676b45.tar.gz txr-fe69004a3798e896cf7349149c6c37ec58676b45.tar.bz2 txr-fe69004a3798e896cf7349149c6c37ec58676b45.zip |
* arith.c (flo_int): New function.
* eval.c (eval_init): flo-int registered as intrinsic.
* lib.h (flo_int): Declared.
* mpi-patches/series: Added mpi-to-double to patch stack.
(mp_to_double): New MPI function.
* mpi-patches/mpi-to-double: New file.
Diffstat (limited to 'arith.c')
-rw-r--r-- | arith.c | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -1157,6 +1157,21 @@ val int_flo(val f) } } +val flo_int(val i) +{ + if (fixnump(i)) + return flo(c_num(i)); + + { + double d; + type_check(i, BGNUM); + if (mp_to_double(mp(i), &d) != MP_OKAY) + uw_throwf(error_s, lit("flo-int: bignum to float conversion failed"), + nao); + return flo(d); + } +} + void arith_init(void) { mp_init(&NUM_MAX_MP); |