diff options
author | Jaron Kent-Dobias <jpk247@cornell.edu> | 2017-10-19 12:38:26 -0400 |
---|---|---|
committer | Jaron Kent-Dobias <jpk247@cornell.edu> | 2017-10-19 12:38:26 -0400 |
commit | cc9ae4b379e611fb89c91f5ebfc1a794865ffb13 (patch) | |
tree | 6e1b34a63d05895b98663effc10af3cdae88ed25 | |
parent | 020266dc3745afc4f9d21a15b40e3a83adbd92ff (diff) | |
download | c++-cc9ae4b379e611fb89c91f5ebfc1a794865ffb13.tar.gz c++-cc9ae4b379e611fb89c91f5ebfc1a794865ffb13.tar.bz2 c++-cc9ae4b379e611fb89c91f5ebfc1a794865ffb13.zip |
Revert "epsilon default is now zero"
This reverts commit 8ffc043664a2debabd8b9682b034c0bc01c6b19e
-rw-r--r-- | src/wolff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wolff.c b/src/wolff.c index fac13d4..77971e2 100644 --- a/src/wolff.c +++ b/src/wolff.c @@ -21,7 +21,7 @@ int main(int argc, char *argv[]) { record_autocorrelation = false; T = 2.3; H = 0; - eps = 0; + eps = 1e-30; output_state = false; min_runs = 10; |