diff options
author | don bright <hugh.m.bright@gmail.com> | 2013-01-06 16:09:21 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2013-01-06 16:09:21 (GMT) |
commit | db971485846d54a043777b3db7ba43f31d486939 (patch) | |
tree | 7138bf02daf9c1fc7607e47b840b1e6c714c1b8d /src | |
parent | 30922740a1287230e79aaeb03d3166079fc321d9 (diff) |
fix typo
Diffstat (limited to 'src')
-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() { |