random: small comment about our random number generator and its origin

This commit is contained in:
Nathan Binkert 2010-11-20 12:12:27 -08:00
parent 34a8e37c13
commit 4d9ff1954b

View file

@ -29,6 +29,13 @@
* Ali Saidi
*/
/*
* Mersenne Twister random number generator has a period of
* 2^19937-1.
*
* The actual math is in its own file to keep the license clear.
*/
#ifndef __BASE_RANDOM_HH__
#define __BASE_RANDOM_HH__