Displaying 1 result from an estimated 1 matches for "wtcalc".
Did you mean:
calc
2007 Mar 06
1
Merging stats from multiple databases for expand
...ExpandBits &bits1, const OmExpandBits &bits2)
{
OmExpandBits sum(bits1);
sum.multiplier += bits2.multiplier;
sum.rtermfreq += bits2.rtermfreq;
// FIXME - try to share this information rather than pick half of it
if (bits2.dbsize > sum.dbsize) {
DEBUGLINE(WTCALC, "OmExpandBits::operator+ using second operand: " <<
bits2.termfreq << "/" << bits2.dbsize << " instead of " <<
bits1.termfreq << "/" << bits1.dbsize);
sum.termfreq = bits2....