diff options
author | Thomas White <taw@physics.org> | 2017-12-12 16:15:38 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2018-02-27 17:12:42 +0100 |
commit | f77e60c21e9b5f02fa265b258d07010debbfcee3 (patch) | |
tree | 3eb9e292b899a1fc67896d67e79999f31f9cb6aa /src/partialator.c | |
parent | 55a8a64893ad2a6d303e4f33271e830a4f3da8f9 (diff) |
Don't complain loudly about scaling failures during refinement
As long as it doesn't end up somewhere bad, it can probe where it likes.
Diffstat (limited to 'src/partialator.c')
-rw-r--r-- | src/partialator.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/partialator.c b/src/partialator.c index 7c3a481c..ced67edb 100644 --- a/src/partialator.c +++ b/src/partialator.c @@ -749,8 +749,8 @@ static void all_residuals(Crystal **crystals, int n_crystals, RefList *full, if ( crystal_get_user_flag(crystals[i]) ) continue; - r = residual(crystals[i], full, 0, NULL, NULL); - free_r = residual(crystals[i], full, 1, NULL, NULL); + r = residual(crystals[i], full, 0, NULL, NULL, 1); + free_r = residual(crystals[i], full, 1, NULL, NULL, 1); log_r = log_residual(crystals[i], full, 0, NULL, NULL); free_log_r = log_residual(crystals[i], full, 1, NULL, NULL); |