From 4f1950b8799ed98a82f45d84a7c6ef287fbfbc5c Mon Sep 17 00:00:00 2001 From: Thomas White Date: Sun, 2 Sep 2018 22:52:45 +0200 Subject: DeltaCChalf all on one line --- src/rejection.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/rejection.c b/src/rejection.c index eca55f2f..fbe631ab 100644 --- a/src/rejection.c +++ b/src/rejection.c @@ -218,11 +218,11 @@ static void check_deltacchalf(Crystal **crystals, int n, RefList *full) //RefList *template = full; cchalf = calculate_cchalf(template, full, NULL, NULL); cchalfi = calculate_cchalf(template, full, crystals[i], &nref); - STATUS("Frame %i:\n", i); - STATUS(" With = %f\n", cchalf*100.0); - STATUS("Without = %f\n", cchalfi*100.0); - STATUS("Delta = %f\n", cchalf - cchalfi); - STATUS("nref = %i\n", nref); + STATUS("Frame %i:", i); + STATUS(" With = %f ", cchalf*100.0); + STATUS("Without = %f", cchalfi*100.0); + STATUS(" Delta = %f ", cchalf - cchalfi); + STATUS("(nref = %i)\n", nref); } } -- cgit v1.2.3