Пакет perl-Math-GMP: Информация

    Исходный пакет: perl-Math-GMP
    Версия: 2.04-alt2
    Собран:  25 января 2007 г. 1:37
    Категория: Разработка/Perl
    Сообщить об ошибке в пакете
    Домашняя страница: http://www.cpan.org

    Лицензия: Artistic
    О пакете: High speed arbitrary size integer math
    Описание: 
    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
    in speed improvements.
    
    The downside is that this module requires a C compiler to install -- a
    small tradeoff in most cases. Also, this module is not 100% compatible
    to Math::BigInt.
    
    A Math::GMP object can be used just as a normal numeric scalar would
    be -- the module overloads most of the normal arithmetic operators to
    provide as seamless an interface as possible. However, if you need a
    perfect interface, you can do the following:
    
      use Math::GMP qw(:constant);
    
      $n = 2 ** (256 * 1024);
      print "n is $n\n";
    
    This would fail without the ':constant' since Perl would use normal
    doubles to compute the 250,000 bit number, and thereby overflow it
    into meaninglessness (smaller exponents yield less accurate data due
    to floating point rounding).

    Список rpm-пакетов, предоставляемых данным srpm-пакетом:
    perl-Math-GMP (x86_64, i586)

    Сопровождающий: Mikhail Pokidko

    Список участников:
    Mikhail Pokidko

    Права:
    Mikhail Pokidko

      1. perl-devel
      2. libgmp-devel

    Последнее изменение


    24 января 2007 г. Mikhail Pokidko 2.04-alt2
    - Build fix-up. Red-Hat patch for x86_64 by Sergey Y. Afonin (asy@)
    15 ноября 2006 г. Mikhail Pokidko 2.04-alt1
    - first build for ALT Linux Sisyphus