aboutsummaryrefslogtreecommitdiff
path: root/src/partialator.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2015-05-15 16:51:33 +0200
committerThomas White <taw@physics.org>2015-05-19 13:57:52 +0200
commitee86ff862924a2441e19ab3ee15bea0a75eb8ae8 (patch)
treef8e42a960176155dcffd264a19c4b93063f919c3 /src/partialator.c
parentfbf601fd3db284a1df7390b4cb3149830fab5d83 (diff)
Remove status code for "lost too many reflections"
This can't happen any more
Diffstat (limited to 'src/partialator.c')
-rw-r--r--src/partialator.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/partialator.c b/src/partialator.c
index 7a6d3b05..5ea1a426 100644
--- a/src/partialator.c
+++ b/src/partialator.c
@@ -289,7 +289,6 @@ static void show_duds(Crystal **crystals, int n_crystals)
int n_noscale = 0;
int n_noref = 0;
int n_solve = 0;
- int n_lost = 0;
int n_early = 0;
for ( j=0; j<n_crystals; j++ ) {
@@ -313,10 +312,6 @@ static void show_duds(Crystal **crystals, int n_crystals)
n_solve++;
break;
- case 4:
- n_lost++;
- break;
-
case 5:
n_early++;
break;
@@ -332,7 +327,6 @@ static void show_duds(Crystal **crystals, int n_crystals)
STATUS(" %i scaling failed.\n", n_noscale);
STATUS(" %i not enough reflections.\n", n_noref);
STATUS(" %i solve failed.\n", n_solve);
- STATUS(" %i lost too many reflections.\n", n_lost);
STATUS(" %i early rejection.\n", n_early);
}
}