first fixes

This commit is contained in:
Massimiliano Corsini 2008-11-27 11:31:01 +00:00
parent 50a436594e
commit 7b8d3a07f0
1 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ namespace vcg {
* http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html
*
*/
class RandomGenerator :
class RandomGenerator
{
// definitions (used by the improved Marsenne-Twister algorithm)
@ -133,7 +133,7 @@ public:
void initializeImprovedMarsenneTwister(unsigned long init_key[], int key_length)
{
int i, j, k;
seed(19650218UL);
initializeImprovedMarsenneTwister(19650218UL);
i=1; j=0;
k = (N>key_length ? N : key_length);
for (; k; k--)