From a691544a9828cacb94f47900b7938fbed99459b2 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Mon, 29 Jan 2018 13:00:27 +0100 Subject: Reduce verbosity --- src/post-refinement.c | 4 ++-- src/scaling.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src') 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 { -- cgit v1.2.3