random: small comment about our random number generator and its origin
authorNathan Binkert <nate@binkert.org>
Sat, 20 Nov 2010 20:12:27 +0000 (12:12 -0800)
committerNathan Binkert <nate@binkert.org>
Sat, 20 Nov 2010 20:12:27 +0000 (12:12 -0800)
src/base/random.hh

index b74a7c4a239542399eb065061df6a25d2e42fd83..b7e2a5073588dcf03ecb25e73e3de9ad67026ffa 100644 (file)
  *          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__