NAME
Math::Random::ISAAC::XS - C implementation of the ISAAC PRNG Algorithm
VERSION
Version 1.0.4 ($Id: XS.pm 6749 2009-04-29 23:56:09Z 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
CPAN Ratings
Search CPAN
CPAN Request Tracker
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Math-Random-ISAAC-XS
CPAN Testing Service (Kwalitee Tests)
CPAN Testers Platform Compatibility Matrix
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
LICENSE
Copyleft 2009 by Jonathan Yu <frequency@cpan.org>. All rights reversed.
I, the copyright holder of this package, hereby release the entire contents therein into the public domain. This applies worldwide, to the extent that it is permissible by law.
In case this is not legally possible, I grant any entity the right to use this work for any purpose, without any conditions, unless such conditions are required by law.
The full details of this can be found in the LICENSE file included in this package.
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.