[seed] Made mpfr.cmp work with doubles
- From: Tim Horton <hortont src gnome org>
- To: svn-commits-list gnome org
- Subject: [seed] Made mpfr.cmp work with doubles
- Date: Wed, 8 Jul 2009 19:30:40 +0000 (UTC)
commit 62546b402f150009bcbccbf0e638b18209373ecd
Author: Matt ARSENAULT <arsenm2 rpi edu>
Date: Wed Jul 8 13:09:27 2009 -0400
Made mpfr.cmp work with doubles
modules/mpfr/seed-mpfr-cmp.c | 14 ++++++++++----
1 files changed, 10 insertions(+), 4 deletions(-)
---
diff --git a/modules/mpfr/seed-mpfr-cmp.c b/modules/mpfr/seed-mpfr-cmp.c
index 5f76e94..1001df4 100644
--- a/modules/mpfr/seed-mpfr-cmp.c
+++ b/modules/mpfr/seed-mpfr-cmp.c
@@ -10,7 +10,8 @@ SeedValue seed_mpfr_cmp (SeedContext ctx,
SeedException * exception)
{
mpfr_ptr rop, op;
- gboolean ret;
+ gdouble dop;
+ gint ret;
CHECK_ARG_COUNT("mpfr.cmp", 1);
@@ -19,15 +20,20 @@ SeedValue seed_mpfr_cmp (SeedContext ctx,
if ( seed_value_is_object_of_class(ctx, args[0], mpfr_class) )
{
op = seed_object_get_private(args[0]);
+ ret = mpfr_cmp(rop, op);
+ }
+ else if ( seed_value_is_number(ctx, args[0]))
+ {
+ dop = seed_value_to_double(ctx, args[0], exception);
+ ret = mpfr_cmp_d(rop, dop);
}
else
{
- TYPE_EXCEPTION("mpfr.cmp", "mpfr_t");
+ TYPE_EXCEPTION("mpfr.cmp", "mpfr_t or double");
}
- ret = mpfr_cmp(rop, op);
- return seed_value_from_boolean(ctx, ret, exception);
+ return seed_value_from_int(ctx, ret, exception);
}
SeedValue seed_mpfr_cmpabs (SeedContext ctx,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]