diff options
author | Helen Ginn <ginn@rescomp1.(none)> | 2017-01-18 16:01:52 +0000 |
---|---|---|
committer | Helen Ginn <ginn@rescomp1.(none)> | 2017-01-18 16:01:52 +0000 |
commit | 2cefd4a8807d87cbe459c83d4b944d32ee38d2af (patch) | |
tree | 06642c076d7475abe190afbec1a8f76b223cd749 /libcrystfel | |
parent | 160ff6d0204f050147bc855977ff7c19c71a5acb (diff) |
Remove error messages
Diffstat (limited to 'libcrystfel')
-rw-r--r-- | libcrystfel/src/taketwo.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/libcrystfel/src/taketwo.c b/libcrystfel/src/taketwo.c index 4b74adbb..b92743b4 100644 --- a/libcrystfel/src/taketwo.c +++ b/libcrystfel/src/taketwo.c @@ -831,7 +831,6 @@ static int find_seed(struct SpotVec *obs_vecs, int obs_vec_count, if (success) { free(i_idx); free(j_idx); gsl_matrix_free(best_rotation); - STATUS("Return normal\n"); return success; } else { if (max_members > max_max_members) { @@ -854,8 +853,7 @@ static int find_seed(struct SpotVec *obs_vecs, int obs_vec_count, free(i_idx); free(j_idx); *rotation = best_rotation; - STATUS("Return timeout\n"); - return (best_rotation != NULL); + return (best_rotation != NULL); } } @@ -864,8 +862,7 @@ static int find_seed(struct SpotVec *obs_vecs, int obs_vec_count, } } /* yes this } is meant to be here */ - STATUS("Return exhaustion\n"); - *rotation = best_rotation; + *rotation = best_rotation; return (best_rotation != NULL); } |