diff options
-rw-r--r-- | src/func.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/func.cc b/src/func.cc index de9060d..0f9329d 100644 --- a/src/func.cc +++ b/src/func.cc @@ -37,10 +37,10 @@ #include <boost/random/mersenne_twister.hpp> #include <boost/random/uniform_real_distribution.hpp> -boost::random::mt19937 deterministic_prng; +boost::random::mt19937 deterministic_rng; // not technically non-deterministic, but boost::random::random_device has // non-header library and/or version issues that would complicate the build -boost::random::mt19937 nondeterministic_prng( std::time(0) ); +boost::random::mt19937 nondeterministic_rng( std::time(0) ); AbstractFunction::~AbstractFunction() { |