diff options
author | Thomas White <taw@physics.org> | 2018-01-29 13:00:27 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2018-02-27 17:12:42 +0100 |
commit | a691544a9828cacb94f47900b7938fbed99459b2 (patch) | |
tree | 69eb1b9975ef285266850f514258d8b54eb4e15a | |
parent | 0ba30eafceabc7f3dc7a80cecfa48ae0553a5cfd (diff) |
Reduce verbosity
-rw-r--r-- | src/post-refinement.c | 4 | ||||
-rw-r--r-- | src/scaling.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/post-refinement.c b/src/post-refinement.c index 6fa9364e..a45bbeea 100644 --- a/src/post-refinement.c +++ b/src/post-refinement.c @@ -383,8 +383,8 @@ static void do_pr_refine(Crystal *cr, const RefList *full, double G; double residual_start, residual_free_start; - residual_start = residual(cr, full, 0, NULL, NULL, 1); - residual_free_start = residual(cr, full, 1, NULL, NULL, 1); + residual_start = residual(cr, full, 0, NULL, NULL, 0); + residual_free_start = residual(cr, full, 1, NULL, NULL, 0); if ( verbose ) { STATUS("\nPR initial: dev = %10.5e, free dev = %10.5e\n", diff --git a/src/scaling.c b/src/scaling.c index f44f047b..4f92f501 100644 --- a/src/scaling.c +++ b/src/scaling.c @@ -141,7 +141,7 @@ static void scale_crystal(void *task, int id) double G; /* Simple iterative algorithm */ - r = linear_scale(pargs->full, crystal_get_reflections(pargs->crystal), &G, 1); + r = linear_scale(pargs->full, crystal_get_reflections(pargs->crystal), &G, 0); if ( r == 0 ) { crystal_set_osf(pargs->crystal, G); } else { |