From 45d7553145989d64ec70ee16904a3d9e8439bc16 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Sat, 9 Jul 2011 09:01:37 +0200 Subject: Display total reflection numbers (not just those for the last image) --- src/partialator.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/partialator.c') diff --git a/src/partialator.c b/src/partialator.c index 954d1746..987893a7 100644 --- a/src/partialator.c +++ b/src/partialator.c @@ -416,6 +416,7 @@ int main(int argc, char *argv[]) RefList *as; struct image *cur; + int nn_expected, nn_found, nn_notfound; cur = &images[n_usable_patterns]; @@ -454,7 +455,10 @@ int main(int argc, char *argv[]) reflist_free(cur->reflections); cur->reflections = as; - update_partialities(cur, &n_expected, &n_found, &n_notfound); + update_partialities(cur, &nn_expected, &nn_found, &nn_notfound); + n_expected += nn_expected; + n_found += nn_found; + n_notfound += nn_notfound; nobs += select_scalable_reflections(cur->reflections, reference); -- cgit v1.2.3