From: Abhijit Menon-Sen Date: Tue, 7 Oct 2003 04:03:34 +0000 (+0000) Subject: Why should -3**$x be more precisely determined than 3**$x? X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=73220cd551d1f40d5bd6be89b18006cdde57f73b;p=p5sagit%2Fp5-mst-13.2.git Why should -3**$x be more precisely determined than 3**$x? p4raw-id: //depot/perl@21419 --- diff --git a/t/op/pow.t b/t/op/pow.t index 9dd7780..4e89d22 100644 --- a/t/op/pow.t +++ b/t/op/pow.t @@ -17,7 +17,7 @@ my @pow = ([3,30,1e-14], [5,20,1e-14], [2.5, 10,,1e-14], [-2, 69,0], - [-3, 30,0], + [-3, 30, 1e-14], ); my $tests; $tests += $_->[1] foreach @pow;