├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml ├── src ├── AbstractRand.php ├── GaussianSampler.php ├── HashRand.php ├── MtRand.php ├── RandException.php ├── Random.php └── XorShiftRand.php └── tests ├── AbstractRandTest.php ├── GaussianSamplerTest.php ├── HashRandTest.php ├── MtRandTest.php ├── RandomTest.php └── XorShiftRandTest.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savvot/random/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savvot/random/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savvot/random/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savvot/random/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savvot/random/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savvot/random/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savvot/random/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/AbstractRand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savvot/random/HEAD/src/AbstractRand.php -------------------------------------------------------------------------------- /src/GaussianSampler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savvot/random/HEAD/src/GaussianSampler.php -------------------------------------------------------------------------------- /src/HashRand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savvot/random/HEAD/src/HashRand.php -------------------------------------------------------------------------------- /src/MtRand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savvot/random/HEAD/src/MtRand.php -------------------------------------------------------------------------------- /src/RandException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savvot/random/HEAD/src/RandException.php -------------------------------------------------------------------------------- /src/Random.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savvot/random/HEAD/src/Random.php -------------------------------------------------------------------------------- /src/XorShiftRand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savvot/random/HEAD/src/XorShiftRand.php -------------------------------------------------------------------------------- /tests/AbstractRandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savvot/random/HEAD/tests/AbstractRandTest.php -------------------------------------------------------------------------------- /tests/GaussianSamplerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savvot/random/HEAD/tests/GaussianSamplerTest.php -------------------------------------------------------------------------------- /tests/HashRandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savvot/random/HEAD/tests/HashRandTest.php -------------------------------------------------------------------------------- /tests/MtRandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savvot/random/HEAD/tests/MtRandTest.php -------------------------------------------------------------------------------- /tests/RandomTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savvot/random/HEAD/tests/RandomTest.php -------------------------------------------------------------------------------- /tests/XorShiftRandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savvot/random/HEAD/tests/XorShiftRandTest.php --------------------------------------------------------------------------------