// AND the term's bitset with cluster doc bitset to get the term's in-cluster frequency.
// This modifies the termBitset, but that's fine as we are not using it anywhere else.
termBitset.and(clusterDocBitset);
int inclusterDF = (int) termBitset.cardinality();
TermEntry entry = new TermEntry(term.utf8ToString(), count++, inclusterDF);
termEntryMap.put(entry.getTerm(), entry);
}
List<TermInfoClusterInOut> clusteredTermInfo = Lists.newLinkedList();