From: Adam Dickmeiss Date: Fri, 22 Jan 2010 13:39:34 +0000 (+0100) Subject: Merge branch 'master' of ssh://git.indexdata.com/home/git/pub/idzebra X-Git-Tag: v2.0.44~11^2~5 X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=commitdiff_plain;h=b987787319658f7e372a6c77dee73c02e938bbdf;hp=8fcb70c581b7f0b1138414b5aaab69205871ccd3 Merge branch 'master' of ssh://git.indexdata.com/home/git/pub/idzebra --- diff --git a/rset/rsmultiandor.c b/rset/rsmultiandor.c index 91669db..94534c9 100644 --- a/rset/rsmultiandor.c +++ b/rset/rsmultiandor.c @@ -613,11 +613,12 @@ static void r_pos_x(RSFD rfd, double *current, double *total, int and_op) (struct rfd_private *)(rfd->priv); double ratio = and_op ? 0.0 : 1.0; int i; + double sum_cur = 0.0; + double sum_tot = 0.0; for (i = 0; ino_children; i++){ double nratio, cur, tot; rset_pos(mrfd->items[i].fd, &cur, &tot); yaz_log(log_level, "r_pos: %d %0.1f %0.1f", i, cur,tot); - nratio = cur / tot; if (and_op) { @@ -626,10 +627,12 @@ static void r_pos_x(RSFD rfd, double *current, double *total, int and_op) } else { - if (nratio < ratio) - ratio = nratio; + sum_cur += cur; + sum_tot += tot; } } + if (!and_op) + ratio = sum_cur / sum_tot; if (ratio == 0.0 || ratio == 1.0) { /* nothing there */ *current = 0; *total = 0;