diff options
author | Marius Kintel <marius@kintel.net> | 2013-03-06 04:27:12 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-03-06 04:27:12 (GMT) |
commit | f70578f362c8c2c78036c9de846c20802ac7aa81 (patch) | |
tree | f327de271f14382c0915677a87e53867785551f7 /src/func.cc | |
parent | 32469374cfe2985f936f017a204d4e9d7dcd3e2f (diff) | |
parent | 03be37d16b585e64de87118053206aaae06e7cf8 (diff) |
Merge branch 'master' into epec-kernel
Diffstat (limited to 'src/func.cc')
-rw-r--r-- | src/func.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/func.cc b/src/func.cc index 5dcb3e9..791e957 100644 --- a/src/func.cc +++ b/src/func.cc @@ -43,7 +43,7 @@ */ #include <boost/random/mersenne_twister.hpp> -#include <boost/random/uniform_real_distribution.hpp> +#include <boost/random/uniform_real.hpp> #ifdef __WIN32__ #include <process.h> @@ -54,8 +54,8 @@ int process_id = _getpid(); int process_id = getpid(); #endif -boost::random::mt19937 deterministic_rng; -boost::random::mt19937 lessdeterministic_rng( std::time(0) + process_id ); +boost::mt19937 deterministic_rng; +boost::mt19937 lessdeterministic_rng( std::time(0) + process_id ); AbstractFunction::~AbstractFunction() { @@ -167,7 +167,7 @@ Value builtin_rands(const Context *, const std::vector<std::string>&, const std: double min = std::min( args[0].toDouble(), args[1].toDouble() ); double max = std::max( args[0].toDouble(), args[1].toDouble() ); - boost::random::uniform_real_distribution<> distributor( min, max ); + boost::uniform_real<> distributor( min, max ); Value::VectorType vec; for (int i=0; i<args[2].toDouble(); i++) { if ( deterministic ) { |