summaryrefslogtreecommitdiff
path: root/hadamard_pt.hpp
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2020-02-03 15:29:46 -0500
committerJaron Kent-Dobias <jaron@kent-dobias.com>2020-02-03 15:29:46 -0500
commit0b116ad92b7403989c2958c9c33e158049ecc6e1 (patch)
tree5cfcfe0904cb6d832d8257a6305f564f2d06fba7 /hadamard_pt.hpp
parentdbee70fe5eb7abca31c01c046ec2174f2dde7665 (diff)
downloadcode-0b116ad92b7403989c2958c9c33e158049ecc6e1.tar.gz
code-0b116ad92b7403989c2958c9c33e158049ecc6e1.tar.bz2
code-0b116ad92b7403989c2958c9c33e158049ecc6e1.zip
replaced mersenne twister with pcg32
Diffstat (limited to 'hadamard_pt.hpp')
-rw-r--r--hadamard_pt.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/hadamard_pt.hpp b/hadamard_pt.hpp
index 7b53b92..8d0a1f7 100644
--- a/hadamard_pt.hpp
+++ b/hadamard_pt.hpp
@@ -21,7 +21,7 @@ typedef struct range {
class PT {
private:
- randutils::mt19937_rng rng;
+ Rng rng;
public:
std::vector<MCMC> Ms;