diff options
author | TATAR Balazs Janos <tatarbj@gmail.com> | 2018-02-22 17:10:33 +0100 |
---|---|---|
committer | Joe Watkins <krakjoe@php.net> | 2018-03-27 22:09:08 +0200 |
commit | ac4d9fd0557cefe7a833bf1b0e97078010789a95 (patch) | |
tree | 892956b40e3f23721a22e0091a7327b5163e4ac5 /ext/standard | |
parent | 63934ea71e719cfc43e94167474f936d8da938de (diff) | |
download | php-git-ac4d9fd0557cefe7a833bf1b0e97078010789a95.tar.gz |
Fixed #75996: Add the right urls to the header of mt_rand.
Diffstat (limited to 'ext/standard')
-rw-r--r-- | ext/standard/mt_rand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/mt_rand.c b/ext/standard/mt_rand.c index 46f23d1327..3d02c48d67 100644 --- a/ext/standard/mt_rand.c +++ b/ext/standard/mt_rand.c @@ -34,7 +34,7 @@ /* The following php_mt_...() functions are based on a C++ class MTRand by Richard J. Wagner. For more information see the web page at - http://www-personal.engin.umich.edu/~wagnerr/MersenneTwister.html + http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/VERSIONS/C-LANG/MersenneTwister.h Mersenne Twister random number generator -- a C++ class MTRand Based on code by Makoto Matsumoto, Takuji Nishimura, and Shawn Cokus @@ -45,7 +45,7 @@ The period, 2^19937-1, and the order of equidistribution, 623 dimensions, are far greater. The generator is also fast; it avoids multiplication and division, and it benefits from caches and pipelines. For more information - see the inventors' web page at http://www.math.keio.ac.jp/~matumoto/emt.html + see the inventors' web page at http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html Reference M. Matsumoto and T. Nishimura, "Mersenne Twister: A 623-Dimensionally |