• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

MakefileH A D29-Apr-201653

README.mdH A D29-Apr-2016505

pcg32-demo.cppH A D29-Apr-20163.2 KiB

pcg32-demo.outH A D29-Apr-20162.2 KiB

pcg32.hH A D29-Apr-20167.4 KiB

README.md

1# pcg32
2This is a tiny self-contained C++ implementation of the PCG32 random number
3based on code by Melissa O'Neill available at http://www.pcg-random.org.
4
5I decided to make put together my own version because the official small
6implementation lacks a C++ interface and various important features (e.g.
7rewind/difference support, shuffling, floating point sample generation), and
8the big C++ version is extremely large and uses very recent language features
9that are not yet supported by all compilers.
10