• Stars
    star
    115
  • Rank 305,916 (Top 7 %)
  • Language
    C++
  • License
    The Unlicense
  • Created almost 12 years ago
  • Updated almost 9 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A random number generator which outputs a unique 32-bit integer each time it's called.

This C++ project implements a random number generator which outputs a unique 32-bit integer each time it's called, and verifies that the first 232 integers returns really are unique. The algorithm is described in the blog post How to Generate a Sequence of Unique Random Integers.

CMake is required to build.

To run the test on Windows:

  • Open a command prompt and navigate to the folder containing CMakeLists.txt.
  • mkdir build
  • cd build
  • cmake .. (You can optionally specify a toolchain using CMake's -G argument.)
  • cmake --build . --config Release
  • ctest .

LICENSE

Released to the public domain.