RandomGenerator.cpp
Go to the documentation of this file.
1 #include "RandomGenerator.hpp"
2 
3 namespace iv
4 {
5 
7 {
8  return this->inst;
9 }
10 
12 {
13  return this->engine();
14 }
15 
17 {
18  this->engine.seed( this->identity_seed );
19  this->engine.discard( 5 );
20 }
21 
22 }