Cleanup MersenneTwister

This commit is contained in:
Christoph Diehl 2017-04-06 16:32:07 +02:00
parent ed2884cc38
commit c7460c2780
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ function MersenneTwister()
return y;
};
this.genrand_real2 = function () {
this.real2 = function () {
return this.int32() * (1.0 / 4294967296.0);
}
}