Add LICENSE
author |
Steve Losh <steve@stevelosh.com> |
date |
Tue, 14 Mar 2017 13:33:53 +0000 |
parents |
7781bd17fcdc |
children |
a4f701ecf78c |
`cl-pcg` is a [permuted congruential generator][pcg] implementation in pure
Common Lisp.
[pcg]: http://www.pcg-random.org/
* **License:** MIT
* **Documentation:** <https://sjl.bitbucket.io/cl-pcg/>
* **Mercurial:** <https://bitbucket.org/sjl/cl-pcg/>
* **Git:** <https://github.com/sjl/cl-pcg/>
Testing with Dieharder
----------------------
There's a Roswell script you can use to make a little executable that will spew
random bytes to stdout, suitable for piping into `dieharder`:
```
make build/pcg
./build/pcg | dieharder -a -g 200
```
`build/pcg` will dump out infinite random bytes until stdout breaks, so maybe
don't run it in a bare terminal unless you want to just totally hose it.