diff options
author | Thomas White <taw@physics.org> | 2017-12-21 15:41:01 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2018-02-27 17:12:42 +0100 |
commit | fa23a8ab096aeba3eea99f353bef44a818cf2584 (patch) | |
tree | 271f1386bafbd1f12780c46678e70c7f905cf045 | |
parent | 715357b3698c89bc4b238131dba1d4f2aba4328c (diff) |
Restore redundancy check
-rw-r--r-- | src/post-refinement.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/post-refinement.c b/src/post-refinement.c index cf508cdb..e476a63f 100644 --- a/src/post-refinement.c +++ b/src/post-refinement.c @@ -114,7 +114,7 @@ double residual(Crystal *cr, const RefList *full, int free, if ( match == NULL ) continue; I_full = get_intensity(match); - if ( get_redundancy(match) < 1 ) continue; /* FIXME: 2 */ + if ( get_redundancy(match) < 2 ) continue; p = get_partiality(refl); //if ( p < 0.2 ) continue; |