in reply to Re: Help me make a test case for Math::BigFloat
in thread Help me make a test case for Math::BigFloat
I don't care what I'm initializing something with, there shouldn't be any way to create $ev such that both $ev and 1-$ev print as "1".
And as for initializing everything as strings, look at this code:
Compare it to this code, which is the same but with a use bignum:#!perl use Math::BigFloat; print ((new Math::BigFloat("1")) - exp(new Math::BigFloat("-7") / (new Math::BigFloat("10")**(new Math::BigFloat("17"))))); # Properly prints "0" # (well, something like 7e-17 would be closer, but I'll accept 0)
It would appear then that we have a bug not so much in Math::BigFloat directly, but somewhere in the intersection of Math::BigFloat, bignum, and the magic bignum sprinkles on exp.#!perl use bignum; use Math::BigFloat; print ((new Math::BigFloat("1")) - exp(new Math::BigFloat("-7") / (new Math::BigFloat("10")**(new Math::BigFloat("17"))))); # Incorrectly prints "1"
@/=map{[/./g]}qw/.h_nJ Xapou cets krht ele_ r_ra/; map{y/X_/\n /;print}map{pop@$_}@/for@/
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Help me make a test case for Math::BigFloat
by BrowserUk (Patriarch) on Mar 07, 2006 at 04:55 UTC | |
by spiritway (Vicar) on Mar 07, 2006 at 06:45 UTC | |
by fizbin (Chaplain) on Mar 07, 2006 at 07:01 UTC | |
by spiritway (Vicar) on Mar 07, 2006 at 07:09 UTC | |
by fizbin (Chaplain) on Mar 07, 2006 at 13:31 UTC | |
|