diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-02-21 15:33:25 -0500 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-02-21 15:33:25 -0500 |
commit | aca81428ac3e7385294d8fc871b9618b739a8109 (patch) | |
tree | 5937386b3cb9ea0bad67c58a8c87970914393346 | |
parent | d944bcc3df0a8d7a10b755b5858c85e61a835a35 (diff) | |
download | fuse_networks-aca81428ac3e7385294d8fc871b9618b739a8109.tar.gz fuse_networks-aca81428ac3e7385294d8fc871b9618b739a8109.tar.bz2 fuse_networks-aca81428ac3e7385294d8fc871b9618b739a8109.zip |
forgot to remove test fixed seed to rng
-rw-r--r-- | src/fracture.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fracture.cpp b/src/fracture.cpp index ebacd28..53a11a5 100644 --- a/src/fracture.cpp +++ b/src/fracture.cpp @@ -63,8 +63,8 @@ int main(int argc, char* argv[]) { ma meas(Lx, Ly, Mx, My, beta); - //randutils::auto_seed_128 seeds; - std::mt19937 rng{683129629}; + randutils::auto_seed_128 seeds; + std::mt19937 rng{seeds}; for (unsigned trial = 0; trial < N; trial++) { while (true) { |