Math::Random::ISAAC::XS.3pm

Langue: en

Version: 2009-11-25 (ubuntu - 24/10/10)

Section: 3 (Bibliothèques de fonctions)

NAME

Math::Random::ISAAC::XS - C implementation of the ISAAC PRNG Algorithm

VERSION

Version 1.001 ($Id: XS.pm 8617 2009-08-18 03:46:38Z FREQUENCY@cpan.org $)

SYNOPSIS

This module implements the same interface as "Math::Random::ISAAC" and can be used as a drop-in replacement. This is the recommended implementation of the module, based on Bob Jenkins' reference implementation in C.

Selecting the backend to use manually really only has two uses:

If you are trying to avoid the small overhead incurred with dispatching method calls to the appropriate backend modules.
If you are testing the module for performance and wish to explicitly decide which module you would like to use.

Example code:

   # With Math::Random::ISAAC
   my $rng = Math::Random::ISAAC->new(time);
   my $rand = $rng->rand();
 
   # With Math::Random::ISAAC::XS
   my $rng = Math::Random::ISAAC::XS->new(time);
   my $rand = $rng->rand();
 
 

DESCRIPTION

See Math::Random::ISAAC for the full description.

METHODS

Math::Random::ISAAC::XS->new( @seeds )

Implements the interface as specified in "Math::Random::ISAAC"

$rng->rand()

Implements the interface as specified in "Math::Random::ISAAC"

$rng->irand()

Implements the interface as specified in "Math::Random::ISAAC"

AUTHOR

Jonathan Yu <frequency@cpan.org>

SUPPORT

You can find documentation for this module with the perldoc command.
     perldoc Math::Random::ISAAC::XS
 
 

You can also look for information at:

AnnoCPAN: Annotated CPAN documentation

<http://annocpan.org/dist/Math-Random-ISAAC-XS>

CPAN Ratings

<http://cpanratings.perl.org/d/Math-Random-ISAAC-XS>

Search CPAN

<http://search.cpan.org/dist/Math-Random-ISAAC-XS>

CPAN Request Tracker

<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Math-Random-ISAAC-XS>

CPAN Testing Service (Kwalitee Tests)

<http://cpants.perl.org/dist/overview/Math-Random-ISAAC-XS>

CPAN Testers Platform Compatibility Matrix

<http://www.cpantesters.org/show/Math-Random-ISAAC-XS.html>

REPOSITORY

You can access the most recent development version of this module at:

<http://svn.ali.as/cpan/trunk/Math-Random-ISAAC-XS>

If you are a CPAN developer and would like to make modifications to the code base, please contact Adam Kennedy <adamk@cpan.org>, the repository administrator. I only ask that you contact me first to discuss the changes you wish to make to the distribution.

FEEDBACK

Please send relevant comments, rotten tomatoes and suggestions directly to the maintainer noted above.

If you have a bug report or feature request, please file them on the CPAN Request Tracker at <http://rt.cpan.org>. If you are able to submit your bug report in the form of failing unit tests, you are strongly encouraged to do so.

SEE ALSO

Math::Random::ISAAC

LICENSE

In a perfect world, I could just say that this package and all of the code it contains is Public Domain. It's a bit more complicated than that; you'll have to read the included LICENSE file to get the full details.

DISCLAIMER OF WARRANTY

The software is provided ``AS IS'', without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software.