GMP - Perl interface to the GNU Multiple Precision Arithmetic Library |
GMP - Perl interface to the GNU Multiple Precision Arithmetic Library
use GMP; use GMP::Mpz; use GMP::Mpq; use GMP::Mpf; use GMP::Rand;
This module provides access to GNU MP arbitrary precision integers, rationals and floating point.
No functions are exported from these packages by default, but can be selected in the usual way, or the tag :all for everything.
use GMP::Mpz qw(gcd, lcm); # just these functions use GMP::Mpq qw(:all); # everything in mpq
This class provides arbitrary precision integers. A new mpz can be
constructed with mpz
. The initial value can be an integer, float,
string, mpz, mpq or mpf. Floats, mpq and mpf will be automatically
truncated to an integer.
use GMP::Mpz qw(:all); my $a = mpz(123); my $b = mpz("0xFFFF"); my $c = mpz(1.5); # truncated
The following overloaded operators are available, and corresponding
assignment forms like +=
,
/
and %
round towards zero (as per the tdiv
functions in GMP).
The following functions are available, behaving the same as the corresponding GMP mpz functions,
cdiv
, fdiv
and tdiv
and their 2exp
variants return a
quotient/remainder pair. fib2
returns a pair F[n] and F[n-1], similarly
lucnum2
. gcd
and lcm
accept a variable number of arguments (one or
more). gcdext
returns a triplet of gcd and two cofactors, for example
use GMP::Mpz qw(:all); $a = 7257; $b = 10701; ($g, $x, $y) = gcdext ($a, $b); print "gcd($a,$b) is $g, and $g == $a*$x + $b*$y\n";
mpz_import
and mpz_export
are so named to avoid the import
keyword.
Their parameters are as follows,
$z = mpz_import ($order, $size, $endian, $nails, $string); $string = mpz_export ($order, $size, $endian, $nails, $z);
The order, size, endian and nails parameters are as per the corresponding C
functions. The string input for mpz_import
is interpreted as byte data
and must be a multiple of $size bytes. mpz_export
conversely returns a
string of byte data, which will be a multiple of $size bytes.
invert
returns the inverse, or undef if it doesn't exist. remove
returns a remainder/multiplicty pair. root
returns the nth root, and
roote
returns a root/bool pair, the bool indicating whether the root is
exact. sqrtrem
and rootrem
return a root/remainder pair.
clrbit
, combit
and setbit
expect a variable which they can modify,
it doesn't make sense to pass a literal constant. Only the given variable
is modified, if other variables are referencing the same mpz object then a
new copy is made of it. If the variable isn't an mpz it will be coerced to
one. For instance,
use GMP::Mpz qw(setbit); setbit (123, 0); # wrong, don't pass a constant $a = mpz(6); $b = $a; setbit ($a, 0); # $a becomes 7, $b stays at 6
scan0
and scan1
return ~0 if no 0 or 1 bit respectively is found.
This class provides rationals with arbitrary precision numerators and
denominators. A new mpq can be constructed with mpq
. The initial value
can be an integer, float, string, mpz, mpq or mpf, or a pair of integers or
mpz's. No precision is lost when converting a float or mpf, the exact value
is retained.
use GMP::Mpq qw(:all); $a = mpq(); # zero $b = mpq(0.5); # gives 1/2 $b = mpq(14); # integer 14 $b = mpq(3,4); # fraction 3/4 $b = mpq("7/12"); # fraction 7/12 $b = mpq("0xFF/0x100"); # fraction 255/256
When a fraction is given, it should be in the canonical form specified in
the GMP manual, which is denominator positive, no common factors, and zero
always represented as 0/1. If not then canonicalize
can be called to put
it in that form. For example,
use GMP::Mpq qw(:all); $q = mpq(21,15); # eek! common factor 3 canonicalize($q); # get rid of it
The following overloaded operators are available, and corresponding
assignment forms like +=
,
The following functions are available,
inv
calculates 1/q, as per the corresponding GMP function. num
and
den
return an mpz copy of the numerator or denominator respectively. In
the future num
and den
might give lvalues so the original mpq can be
modified through them, but this is not done currently.
This class provides arbitrary precision floating point numbers. The mantissa is an arbitrary user-selected precision and the exponent is a fixed size (one machine word).
A new mpf can be constructed with mpf
. The initial value can be an
integer, float, string, mpz, mpq or mpf. The second argument specifies the
desired precision in bits, or if omitted then the default precision is used.
use GMP::Mpf qw(:all); $a = mpf(); # zero $b = mpf(-7.5); # default precision $c = mpf(1.5, 500); # 500 bits precision $d = mpf("1.0000000000000001");
The following overloaded operators are available, with the corresponding
assignment forms like +=
,
The following functions are available, behaving the same as the corresponding GMP mpf functions,
mpf_eq
is so named to avoid clashing with the perl eq
operator.
set_prec
expects a variable which it can modify, it doesn't make sense to
pass a literal constant. Only the given variable is modified, if other
variables are referencing the same mpf object then a new copy is made of it.
If the variable isn't an mpf it will be coerced to one.
Results are the same precision as inputs, or if two mpf's are given to a binary operator then the precision of the first is used. For example,
use GMP::Mpf qw(mpf); $a = mpf(2.0, 100); $b = mpf(2.0, 500); $c = $a + $b; # gives 100 bits precision
Mpf to string conversion via ``'' or the usual string contexts uses $#
the
same as normal float to string conversions, or defaults to %.g
if $#
is not defined. %.g
means all significant digits in the selected
precision.
The following functions are available in the GMP class,
get_d_2exp
accepts any integer, string, float, mpz, mpq or mpf operands
and returns a float and an integer exponent,
($dbl, $exp) = get_d_2exp (mpf ("3.0")); # dbl is 0.75, exp is 2
get_str
takes an optional second argument which is the base, defaulting
to decimal. A negative base means upper case, as per the C functions. For
integer, integer string, mpz or mpq operands a string is returned.
use GMP qw(:all); use GMP::Mpq qw(:all); print get_str(mpq(-5,8)),"\n"; # -5/8 print get_str(255,16),"\n"; # ff
For float, float strings or mpf operands, get_str
accepts an optional
third parameter being how many digits to produce, defaulting to 0 which
means all digits. (Only as many digits as can be accurately represented by
the float precision are ever produced though.) A string/exponent pair is
returned, as per the C mpf_get_str function. For example,
use GMP qw(:all); use GMP::Mpf qw(:all); ($s, $e) = get_str(111.111111111, 10, 4); printf ".$se$e\n"; # .1111e3 ($s, $e) = get_str(1.625, 10); print "0.$s*10^$e\n"; # 0.1625*10^1 ($s, $e) = get_str(mpf(2)**20, 16); printf ".%s@%x\n", $s, $e; # .1@14
printf
and sprintf
allow formatted output of GMP types. mpz and mpq
values can be used with integer conversions (d, o, x, X) and mpf with float
conversions (f, e, E, g, G). All the standard perl printf features are
available too. For example,
use GMP::Mpz qw(mpz); use GMP::Mpf qw(mpf); GMP::printf ("%d %d %s", 123, mpz(2)**128, 'foo'); GMP::printf STDERR "%.40f", mpf(1.234);
In perl 5.6.1 it doesn't seem to work to export printf
, the plain builtin
printf
is reached unless calls are &printf()
style. Explicit use of
GMP::printf
is suggested. sprintf
doesn't suffer this problem.
use GMP qw(sprintf); use GMP::Mpq qw(mpq); $s = sprintf "%x", mpq(15,16);
version
is not exported by default or by tag :all, calling it as
GMP::version()
is recommended. It returns the GMP library version
string, which is not to be confused with the module version number.
The other GMP module functions behave as per the corresponding GMP routines, and accept any integer, string, float, mpz, mpq or mpf. For example,
use GMP qw(:all); use GMP::Mpz qw(mpz); $z = mpz(123); print sgn($z); # gives 1
Because each of GMP::Mpz, GMP::Mpq and GMP::Mpf is a sub-class of GMP,
->
style calls work too.
use GMP qw(:all); use GMP::Mpq qw(mpf); $q = mpq(-5,7); if ($q->integer_p()) # false ...
This class provides objects holding an algorithm and state for random number
generation. randstate
creates a new object, for example,
use GMP::Rand qw(randstate); $r = randstate(); $r = randstate('lc_2exp_size', 64); $r = randstate('lc_2exp', 43840821, 1, 32); $r = randstate('mt'); $r = randstate($another_r);
With no parameters this corresponds to the C function
gmp_randinit_default
, and is a compromise between speed and randomness.
'lc_2exp_size' corresponds to gmp_randinit_lc_2exp_size
, 'lc_2exp'
corresponds to gmp_randinit_lc_2exp
, and 'mt' corresponds to
gmp_randinit_mt
. Or when passed another randstate object, a copy of that
object is made.
'lc_2exp_size' can fail if the requested size is bigger than the internal table provides for, in which case undef is returned. The maximum size currently supported is 128. The other forms always succeed.
A randstate can be seeded with an integer or mpz, using the seed
method.
/dev/random might be a good source of randomness, or time()
or
Time::HiRes::time() might be adequate, depending on the application.
$r->seed(time()));
Random numbers can be generated with the following functions,
Each constructs a new mpz or mpf and with a distribution per the corresponding GMP function. For example,
use GMP::Rand (:all); $r = randstate(); $a = mpz_urandomb($r,256); # uniform mpz, 256 bits $b = mpz_urandomm($r,mpz(3)**100); # uniform mpz, 0 to 3**100-1 $c = mpz_rrandomb($r,1024); # special mpz, 1024 bits $f = mpf_urandomb($r,128); # uniform mpf, 128 bits, 0<=$f<1 $f = gmp_urandomm_ui($r,56); # uniform int, 0 to 55
Arguments to operators and functions are converted as necessary to the
appropriate type. For instance **
requires an unsigned integer exponent,
and an mpq argument will be converted, so long as it's an integer in the
apropriate range.
use GMP::Mpz (mpz); use GMP::Mpq (mpq); $p = mpz(3) ** mpq(45); # allowed, 45 is an integer
It's an error if a conversion to an integer or mpz would cause any truncation. For example,
use GMP::Mpz (mpz); $p = mpz(3) + 1.25; # not allowed $p = mpz(3) + mpz(1.25); # allowed, explicit truncation
Comparisons, however, accept any combination of operands and are always done exactly. For example,
use GMP::Mpz (mpz); print mpz(3) < 3.1; # true
Variables used on the left of an assignment operator like +=
are subject
to coercion too. An integer, float or string will change type when an mpz,
mpq or mpf is applied to it. For example,
use GMP::Mpz (mpz); $a = 1; $a += mpz(1234); # $a becomes an mpz
The rule for binary operators in the overload
mechanism is that if both
operands are class objects then the method from the first is used. This
determines the result type when mixing GMP classes. For example,
use GMP::Mpz (mpz); use GMP::Mpq (mpq); use GMP::Mpf (mpf); $z = mpz(123); $q = mpq(3,2); $f = mpf(1.375) print $q+$f; # gives an mpq print $f+$z; # gives an mpf print $z+$f; # not allowed, would lose precision
A special tag :constants
is recognised in the module exports list. It
doesn't select any functions, but indicates that perl constants should be
GMP objects. This can only be used on one of GMP::Mpz, GMP::Mpq or GMP::Mpf
at any one time, since they apply different rules.
GMP::Mpz will treat constants as mpz's if they're integers, or ordinary floats if not. For example,
use GMP::Mpz qw(:constants); print 764861287634126387126378128,"\n"; # an mpz print 1.25,"\n"; # a float
GMP::Mpq is similar, treating integers as mpq's and leaving floats to the normal perl handling. Something like 3/4 is read as two integer mpq's and a division, but that's fine since it gives the intended fraction.
use GMP::Mpq qw(:constants); print 3/4,"\n"; # an mpq print 1.25,"\n"; # a float
GMP::Mpf will treat all constants as mpf's using the default precision. BEGIN blocks can be used to set that precision while the code is parsed. For example,
use GMP::Mpf qw(:constants); BEGIN { GMP::Mpf::set_default_prec(256); } print 1/3; BEGIN { GMP::Mpf::set_default_prec(64); } print 5/7;
A similar special tag :noconstants is recognised to turn off the constants feature. For example,
use GMP::Mpz qw(:constants); print 438249738748174928193,"\n"; # an mpz use GMP::Mpz qw(:noconstants); print 438249738748174928193,"\n"; # now a float
All three 'integer', 'binary' and 'float' constant methods are captured. 'float' is captured even for GMP::Mpz and GMP::Mpq since perl by default treats integer strings as floats if they don't fit a plain integer.
GMP manual, the perl manpage, the overload manpage.
In perl 5.005_03 on i386 FreeBSD, the overloaded constants sometimes provoke seg faults. Don't know if that's a perl bug or a GMP module bug, though it does seem to go bad before reaching anything in GMP.xs.
There's no way to specify an arbitrary base when converting a string to an mpz (or mpq or mpf), only hex or octal with 0x or 0 (for mpz and mpq, but not for mpf).
These modules are not reentrant or thread safe, due to the implementation of the XSUBs.
Returning a new object from the various functions is convenient, but assignment versions could avoid creating new objects. Perhaps they could be named after the C language functions, eg. mpq_inv($q,$q);
It'd be good if num
and den
gave lvalues so the underlying mpq could
be manipulated.
printf
could usefully accept %b for mpz, mpq and mpf, and perhaps %x for
mpf too.
get_str
returning different style values for integer versus float is a
bit unfortunate. With mpz, mpq and mpf objects there's no doubt what it
will do, but on a plain scalar its action depends on whether the scalar was
promoted to a float at any stage, and then on the GMP module rules about
using the integer or float part.
In usual perl object style, an mpz is a reference to an object blessed into
class GMP::Mpz
. The object holds a pointer to the C language mpz_t
structure. Similarly for mpq, mpf and randstate.
A free list of mpz and mpq values is kept to avoid repeated initializing and clearing when objects are created and destroyed. This aims to help speed, but it's not clear whether it's really needed.
mpf doesn't use a free list because the precision of new objects can be different each time.
No interface to mpf_set_prec_raw
is provided. It wouldn't be very useful
since there's no way to make an operation store its result in a particular
object. The plain set_prec
is useful though, for truncating to a lower
precision, or as a sort of directive that subsequent calculations involving
that variable should use a higher precision.
The overheads of perl dynamic typing (operator dispatch, operand type checking or coercion) will mean this interface is slower than using C directly.
Some assertion checking is available as a compile-time option.
Copyright 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
The GNU MP Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.
The GNU MP Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with the GNU MP Library. If not, see http://www.gnu.org/licenses/.
GMP - Perl interface to the GNU Multiple Precision Arithmetic Library |