/*
MINSTD Multiplicative congruential generator
implementation by Radim Kolar <hsn@sendmail.cz> 2024
https://gitlab.com/hsn10/minstd
This is free and unencumbered software released into the public domain.
SPDX-License-Identifier: Unlicense OR CC0-1.0
For more information, please refer to <http://unlicense.org/>
*/
use MINSTD;
use SEED;
/**
Generator period is 2147483646 = 2 ^ 31 - 2
*/