diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2017-11-03 00:18:36 -0400 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2017-11-03 00:18:36 -0400 |
commit | 0cde9f780942559625ff4a9162a71b1156947b96 (patch) | |
tree | 452b12832bd5742218f4255ea780272e19e67088 /src | |
parent | 2bfb2a6daeb344e4a2a588200739200c35d147f5 (diff) | |
download | c++-0cde9f780942559625ff4a9162a71b1156947b96.tar.gz c++-0cde9f780942559625ff4a9162a71b1156947b96.tar.bz2 c++-0cde9f780942559625ff4a9162a71b1156947b96.zip |
fixed conditions for new warning
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 b44ccab..0ab6a29 100644 --- a/src/wolff.c +++ b/src/wolff.c @@ -247,7 +247,7 @@ int main(int argc, char *argv[]) { printf("WARNING: correlation function never hit the noise floor.\n"); } - if (n < 1) { + if (n < 2) { printf("WARNING: correlation function only has one nonnegative term.\n"); } |