Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

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

by ysth (Canon)
on Jul 26, 2009 at 06:26 UTC ( [id://783273]=note: print w/replies, xml ) Need Help??


in reply to Re: 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.
  • Comment on Re: Answer: How do I create/detect/handle Infinity?

Replies are listed 'Best First'.
Re^2: Answer: How do I create/detect/handle Infinity?
by syphilis (Archbishop) on Jul 26, 2009 at 08:41 UTC
    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
        $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://783273]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (5)
As of 2024-04-19 22:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found