All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
random.cc
Go to the documentation of this file.
1 #include "osl/misc/random.h"
2 #include <boost/random/mersenne_twister.hpp>
3 #include <time.h>
4 unsigned int osl::misc::random()
5 {
6  static boost::mt11213b mt_random;
7  return mt_random();
8 }
9 
11 {
12  static boost::mt11213b mt_random(time(0));
13  return mt_random();
14 }