The author of the RNG that is used by AcCoRD has suggested taking a look at another RNG, specifically the PCG. That RNG is supposed to be faster and have better statistical properties than the Mersenne Twister. Sample code is available to implement it in C.
Mersenne twister has been replaced with PCG. Furthermore, all calls to random number generation functions have been centralized in a single source file.
PCG is quite compact and is licensed under Apache.
The author of the RNG that is used by AcCoRD has suggested taking a look at another RNG, specifically the PCG. That RNG is supposed to be faster and have better statistical properties than the Mersenne Twister. Sample code is available to implement it in C.