Project

prng-isaac

0.0
No commit activity in last 3 years
No release in over 3 years
A pseudorandom number generator based on Bob Jenkins' ISAAC; useful for both simulation and cryptography.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies
 Project Readme

ISAAC

A pseudorandom number generator based on http://burtleburtle.net/bob/rand/isaac.html.

Sometimes useful for simulation in place of MT19937 (which ruby's #rand is based on), even though ISAAC's number distribution quality is not as good, because it is faster and the state is lighter, so you can have many of them.

This is useful when you need multiple pseudo-random sequences that are independent and recreatable.

If you care about small state and not cryptographic security, use ISAAC4: the state is about 48 bytes rather then 2K.