summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2019-02-21 15:33:25 -0500
committerJaron Kent-Dobias <jaron@kent-dobias.com>2019-02-21 15:33:25 -0500
commitaca81428ac3e7385294d8fc871b9618b739a8109 (patch)
tree5937386b3cb9ea0bad67c58a8c87970914393346
parentd944bcc3df0a8d7a10b755b5858c85e61a835a35 (diff)
downloadfuse_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.cpp4
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) {