We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53e8571 commit d305672Copy full SHA for d305672
lib/Math/Complex.pm
@@ -9,7 +9,7 @@ package Math::Complex;
9
10
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $Inf);
11
12
-$VERSION = 1.51;
+$VERSION = 1.51_01;
13
14
use Config;
15
@@ -20,6 +20,8 @@ BEGIN {
20
8 => '1.7976931348623157e+308',
21
10 => '1.1897314953572317650857593266280070162E+4932',
22
12 => '1.1897314953572317650857593266280070162E+4932', # AFAICT.
23
+ # Tested on x86_64. What does Sparc give?
24
+ 16 => '1.1897314953572317650857593266280070162E+4932',
25
);
26
my $nvsize = $Config{nvsize} || ($Config{uselongdouble} && $Config{longdblsize}) || $Config{doublesize};
27
die "Math::Complex: Could not figure out nvsize\n" unless defined $nvsize;
0 commit comments