roadrunner  2.6.0
Fast simulator for SBML models
rrRandom.h
1 #ifndef rrRandomH
2 #define rrRandomH
3 //---------------------------------------------------------------------------
4 
5 #include "mtrand.h"
6 
7 namespace rr
8 {
9 
13 class Random
14 {
15 
16  private:
17  MTRand mRand; //Get a double in [0, 1)
18  public:
19  Random();
20  double NextDouble() const;
21 };
22 
23 }
24 #endif
Definition: mtrand.h:101
Definition: rrRandom.h:14