docs/index.markdown @ cd52795d9ecd default tip
Update URLs
| author | Steve Losh <steve@stevelosh.com> |
|---|---|
| date | Tue, 14 Jan 2020 19:53:05 -0500 |
| parents | 7e8b0e494c82 |
| children | (none) |
`cl-pcg` is a [permuted congruential generator][pcg] implementation in pure Common Lisp. Permuted congruential generators are seedable, small, fast, fairly-hard-to-predict random number generators. They can be useful for things like games. They can also be advanced and rewound efficiently. PCGs are **not** cryptographically secure. If you need that, look elsewhere. `cl-pcg` can be installed with [Quicklisp][]: `(ql:quickload :cl-pcg)` [pcg]: http://www.pcg-random.org/ * **License:** MIT * **Documentation:** <https://docs.stevelosh.com/cl-pcg/> * **Mercurial:** <https://hg.stevelosh.com/cl-pcg/> * **Git:** <https://github.com/sjl/cl-pcg/> [quicklisp]: https://quicklisp.org/