Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^2: Answer: How do I create/detect/handle Infinity?

by syphilis (Archbishop)
on Jul 26, 2009 at 08:41 UTC ( [id://783283]=note: print w/replies, xml ) Need Help??


in reply to Re: Answer: How do I create/detect/handle Infinity?
in thread How do I create/detect/handle Infinity?

NaN doesn't test as == anything, even another NaN.

I was wondering:
unless ($x <= $inf) { print "\$x is definitely a NaN\n" } else { print "\$x is definitely NOT a NaN\n" }
Is that reliable ? ... assuming, of course, that $inf is in fact + infinity, and that there are no bugs present.
Seems to me that ought to be good enough.

Cheers,
Rob

Replies are listed 'Best First'.
Re^3: Answer: How do I create/detect/handle Infinity?
by ysth (Canon) on Jul 26, 2009 at 10:12 UTC
      $isnan = ! defined($x <=> 0);

      Ooow ... wasn't aware that perl did that.
      In the mpfr library, the mpfr_cmp(x,y) function will return -1 if x<y, +1 if x>y. Otherwise it returns 0 (and sets the erange flag iff one/both of the arguments is a nan).

      So, I'm left wondering whether, in Math::MPFR (which more-or-less wraps the mpfr library), the spaceship operator (which overloads the mpfr_cmp function) should:
      a) adhere to mpfr library behaviour and return 0 and set the erange flag when nans are involved;
      or
      b) adhere to perl behaviour and return undef when nans are involved.

      If b), then there's also the question of whether the erange flag should still be set.

      Interested to hear any thoughts on that.

      Cheers,
      Rob

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://783283]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (3)
As of 2024-04-25 09:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found