The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "module:Math::GMP"

Math::GMP - High speed arbitrary size integer math River stage one • 5 direct dependents • 8 total dependents

Math::GMP was designed to be a drop-in replacement both for Math::BigInt and for regular integer arithmetic. Unlike BigInt, though, Math::GMP uses the GNU gmp library for all of its calculations, as opposed to straight Perl functions. This can result...

SHLOMIF/Math-GMP-2.25 - 15 Mar 2022 09:26:46 UTC

Math::BigInt::GMP - backend library for Math::BigInt etc. based on GMP River stage two • 12 direct dependents • 24 total dependents

Math::BigInt::GMP is a backend library for Math::BigInt, Math::BigFloat, Math::BigRat and related modules. Math::BigInt::GMP provides support for big integer calculations by means of the GMP C library. See <https://gmplib.org/> for more information a...

PJACKLAM/Math-BigInt-GMP-1.7001 - 06 Jan 2024 12:40:12 UTC

Math::Prime::Util::GMP - Utilities related to prime numbers and factoring, using GMP River stage one • 2 direct dependents • 6 total dependents

A module for number theory in Perl using GMP. This includes primality tests, getting primes in a range, factoring, and more. While it certainly can be used directly, the main purpose of this module is for Math::Prime::Util. That module will automatic...

DANAJ/Math-Prime-Util-GMP-0.52 - 22 Jun 2020 09:19:08 UTC

Math::GMPn - Fixed length integer arithmetic. River stage zero No dependents

This module provides a set of functions to perform arithmetic on fixed length but arbitrarily large bit strings implemented on top of the GMP library low level functions (see <http://gmplib.org/manual/Low_002dlevel-Functions.html>). Numbers are repre...

SALVA/Math-GMPn-0.03 - 24 Feb 2011 12:00:04 UTC

Math::Yapp - Perl extension for working with Polynomials. Yes, I know there are *many!* Polynomial packages. And like them, I started it for (geeky) fun, then got obsessed with it as a learning experience. Enjoy! River stage zero No dependents

Man, if that synopsis don't say it all, what can I possibly add? :-) OK, as mentioned above, this is a fun project. The plan, not necessarily all implemented at the first release, is to provide many kinds of operations on the polynomials that intimid...

JASALOMON/Math-Yapp-1.07 - 26 Feb 2017 21:40:36 UTC

Math::Sidef - Perl interface to Sidef's mathematical library. River stage zero No dependents

Math::Sidef provides an easy interface to the numerical built-in system of Sidef. It supports all the numerical functions provided by: * Sidef::Types::Number::Number * Sidef::Types::Number::Mod * Sidef::Types::Number::Gauss * Sidef::Types::Number::Qu...

TRIZEN/Math-Sidef-0.05 - 06 Nov 2021 15:53:06 UTC

Math::Int128 - Manipulate 128 bits integers in Perl River stage two • 6 direct dependents • 11 total dependents

This module adds support for 128 bit integers, signed and unsigned, to Perl. In order to compile this module, your compiler must support one of either the "__int128" or "int __attribute__ ((__mode__ (TI)))" types. Both GCC and Clang have supported on...

SALVA/Math-Int128-0.22 - 07 Apr 2015 14:09:16 UTC

Math::Int64 - Manipulate 64 bits integers in Perl River stage two • 28 direct dependents • 82 total dependents

This module adds support for 64 bit integers, signed and unsigned, to Perl. Exportable functions int64() int64($value) Creates a new int64 value and initializes it to $value, where $value can be a Perl number or a string containing a number. For inst...

SALVA/Math-Int64-0.57 - 21 Jan 2024 21:12:00 UTC

Math::BigRat - arbitrary size rational number math package River stage four • 209 direct dependents • 1676 total dependents

Math::BigRat complements Math::BigInt and Math::BigFloat by providing support for arbitrary big rational numbers. MATH LIBRARY You can change the underlying module that does the low-level math operations by using: use Math::BigRat try => 'GMP'; Note:...

PJACKLAM/Math-BigInt-2.003002 - 06 Jan 2024 12:38:23 UTC

Math::BigInt - arbitrary size integer math package River stage four • 209 direct dependents • 1676 total dependents

Math::BigInt provides support for arbitrary precision integers. Overloading is also provided for Perl operators. Input Input values to these routines may be any scalar number or string that looks like a number and represents an integer. Anything that...

PJACKLAM/Math-BigInt-2.003002 - 06 Jan 2024 12:38:23 UTC

Math::ModInt - modular integer arithmetic River stage one • 1 direct dependent • 1 total dependent

Math::ModInt provides overloaded operators for modular integer arithmetic. Math::ModInt objects represent integer residue classes. These objects can be used in arithmetic expressions just like Perl numbers. Math::ModInt objects are immutable. Mutator...

MHASCH/Math-ModInt-0.013 - 28 Mar 2021 07:03:09 UTC

Math::Decimal - arithmetic in decimal River stage one • 1 direct dependent • 1 total dependent

This module performs basic arithmetic with arbitrary-precision numbers expressed in decimal in ordinary Perl strings. The numbers can be arbitrarily large, and can involve arbitrarily small fractions, and all results are exact. This differs from Perl...

ZEFRAM/Math-Decimal-0.004 - 29 Jul 2017 19:51:04 UTC

Math::BigFloat - arbitrary size floating point math package River stage four • 209 direct dependents • 1676 total dependents

Math::BigFloat provides support for arbitrary precision floating point. Overloading is also provided for Perl operators. All operators (including basic math operations) are overloaded if you declare your big floating point numbers as $x = Math::BigFl...

PJACKLAM/Math-BigInt-2.003002 - 06 Jan 2024 12:38:23 UTC

Math::Primality - Check for primes with Perl River stage one • 2 direct dependents • 3 total dependents

Math::Primality implements is_prime() and next_prime() as a replacement for Math::PARI::is_prime(). It uses the GMP library through Math::GMPz. The is_prime() method is actually a Baillie-PSW primality test which consists of two steps: * Perform a st...

LETO/Math-Primality-0.08 - 01 Feb 2013 06:35:23 UTC

Math::Polynomial - Perl class for polynomials in one variable River stage one • 5 direct dependents • 5 total dependents

Math::Polynomial objects represent polynomials in one variable, i.e. expressions built with finitely many additions, subtractions and multiplications of the variable and some constants. A standard way of writing down a polynomial in one variable is a...

MHASCH/Math-Polynomial-1.021 - 03 Apr 2021 10:31:10 UTC

Math::BigInt::Lib - virtual parent class for Math::BigInt libraries River stage four • 209 direct dependents • 1676 total dependents

This module provides support for big integer calculations. It is not intended to be used directly, but rather as a parent class for backend libraries used by Math::BigInt, Math::BigFloat, Math::BigRat, and related modules. Other backend libraries inc...

PJACKLAM/Math-BigInt-2.003002 - 06 Jan 2024 12:38:23 UTC

Math::Prime::Util - Utilities related to prime numbers, including fast sieves and factoring River stage two • 12 direct dependents • 19 total dependents

A module for number theory in Perl. This includes prime sieving, primality tests, primality proofs, integer factoring, counts / bounds / approximations for primes, nth primes, and twin primes, random prime generation, and much more. This module is th...

DANAJ/Math-Prime-Util-0.73 - 15 Nov 2018 18:56:14 UTC

Bundle::Math::Big - Bundle of modules related to arbitrary size numbers River stage zero No dependents

This is a bundle of modules related to arbitrary size numbers. This also includes arbitrary precision number modules. Please have a look at Bundle::Math. If you would like to see a specific module included in a future version of this bundle, please s...

SMUELLER/Bundle-Math-Big-1.00 - 03 Apr 2004 16:12:40 UTC

Math::BigInt::GMPz - a math backend library based on Math::GMPz River stage zero No dependents

Math::BigInt::GMPz is a backend library for Math::BigInt, Math::BigFloat, Math::BigRat and related modules. It is not indended to be used directly. Math::BigInt::GMPz uses Math::GMPz objects for the calculations. Math::GMPz is an XS layer on top of t...

PJACKLAM/Math-BigInt-GMPz-0.0016 - 06 Jan 2024 12:40:18 UTC

Math::BigInt::Calc - pure Perl module to support Math::BigInt River stage four • 209 direct dependents • 1676 total dependents

Math::BigInt::Calc inherits from Math::BigInt::Lib. In this library, the numbers are represented interenally in base B = 10**N, where N is the largest possible integer that does not cause overflow in the intermediate computations. The base B elements...

PJACKLAM/Math-BigInt-2.003002 - 06 Jan 2024 12:38:23 UTC
34 results (0.041 seconds)