diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2017-10-19 11:00:01 -0400 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2017-10-19 11:00:01 -0400 |
commit | 8ffc043664a2debabd8b9682b034c0bc01c6b19e (patch) | |
tree | 1d3a839e2a5a6e2fc9c2f46c1fa97450e8d1bb34 /src | |
parent | 58b74c50c3b23a008e5e3f4f5bef3edaae1418e6 (diff) | |
download | c++-8ffc043664a2debabd8b9682b034c0bc01c6b19e.tar.gz c++-8ffc043664a2debabd8b9682b034c0bc01c6b19e.tar.bz2 c++-8ffc043664a2debabd8b9682b034c0bc01c6b19e.zip |
epsilon default is now zero
Diffstat (limited to 'src')
-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 77971e2..fac13d4 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 = 1e-30; + eps = 0; output_state = false; min_runs = 10; |