diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/peaks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/peaks.c b/src/peaks.c index e9a10ab7..0cf7c232 100644 --- a/src/peaks.c +++ b/src/peaks.c @@ -652,7 +652,7 @@ int peak_sanity_check(struct image *image, UnitCell *cell, STATUS("Sanity factor: %f / %f = %f\n", (float)n_sane, (float)n_feat, (float)n_sane / (float)n_feat); - if ( (float)n_sane / (float)n_feat < 0.8 ) return 0; + if ( (float)n_sane / (float)n_feat < 0.1 ) return 0; return 1; } |