diff options
author | Thomas White <taw@physics.org> | 2014-02-22 03:33:46 -0800 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2014-02-22 03:33:46 -0800 |
commit | 5976fa23872b7239d0d16526fcc3041eb569dc6c (patch) | |
tree | ba28136a2bd82c515d57a017ae45bdc3498a97f0 | |
parent | b2a3ed9785abd7b3e49cd99d8d37f10faba4f10c (diff) |
Reduce lower partiality limit
-rw-r--r-- | src/partialator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/partialator.c b/src/partialator.c index 66a975d7..8e80d076 100644 --- a/src/partialator.c +++ b/src/partialator.c @@ -200,7 +200,7 @@ static int select_scalable_reflections(RefList *list, RefList *reference) } /* Don't try to scale up reflections which are hardly there */ - if ( get_partiality(refl) < 0.1 ) { + if ( get_partiality(refl) < 0.05 ) { sc = 0; n_par++; } |