diff options
author | Thomas White <taw@physics.org> | 2011-09-30 13:43:44 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:38 +0100 |
commit | 0dfa03ad8fdacd5b969b17fc35c3d22fbfb9d949 (patch) | |
tree | 4e1ea7f128b1c0c58f4a381f433f2ba74eff8598 | |
parent | d27813718695ff745ea3f44f06ce4361a501891d (diff) |
Excluse reflections without at least one partner from the partiality graph
-rw-r--r-- | src/scaling-report.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/scaling-report.c b/src/scaling-report.c index 96537ae8..6675a6ba 100644 --- a/src/scaling-report.c +++ b/src/scaling-report.c @@ -218,6 +218,7 @@ static void partiality_graph(cairo_t *cr, const struct image *images, int n, int bin; if ( !get_scalable(refl) ) continue; + if ( get_redundancy(refl) < 2 ) continue; get_indices(refl, &h, &k, &l); f = find_refl(full, h, k, l); |