minor changes

This commit is contained in:
Massimiliano Corsini 2008-11-27 11:49:17 +00:00
parent 67d185c384
commit c13722fd54
1 changed files with 7 additions and 7 deletions

View File

@ -73,6 +73,13 @@ private:
unsigned long mt[N]; // the array for the state vector
int mti;
// construction
public:
// ctor
RandomGenerator(){}
// public methods
public:
@ -223,13 +230,6 @@ public:
return (((double)generateWithImprovedMarsenneTwister()) + 0.5)*(1.0/4294967296.0);
}
// construction
public:
// ctor
RandomGenerator(){}
};
} // end namespace math