diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2017-10-19 12:39:48 -0400 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2017-10-19 12:39:48 -0400 |
commit | 223f0e3a0d7f54cec89ae519f5b6f368a41d452f (patch) | |
tree | 1d3a839e2a5a6e2fc9c2f46c1fa97450e8d1bb34 /src | |
parent | c584052a004f6c7a2932b5290f57ea62bb722a26 (diff) | |
download | c++-223f0e3a0d7f54cec89ae519f5b6f368a41d452f.tar.gz c++-223f0e3a0d7f54cec89ae519f5b6f368a41d452f.tar.bz2 c++-223f0e3a0d7f54cec89ae519f5b6f368a41d452f.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; |