From db971485846d54a043777b3db7ba43f31d486939 Mon Sep 17 00:00:00 2001 From: don bright Date: Sun, 6 Jan 2013 10:09:21 -0600 Subject: fix typo 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 #include -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() { -- cgit v0.10.1