This is an automated email from the ASF dual-hosted git repository. aherbert pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/commons-collections.git.
from e08f0be Revert CountingBloomFilter to ignore counts from another filter. new 9a496dc Update the AbstractBloomFilter to not use BitSet for cardinality. new 24ad759 Document the HashFunctionIdentity Signedness new 8b4ecbc Compute the bit index into a Bloom filter using bit shifts. The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../bloomfilter/AbstractBloomFilter.java | 84 +++++++++++----------- .../bloomfilter/BloomFilterIndexer.java | 81 +++++++++++++++++++++ .../bloomfilter/HasherBloomFilter.java | 9 ++- .../bloomfilter/hasher/HashFunctionIdentity.java | 28 +++++++- .../bloomfilter/BloomFilterIndexerTest.java | 54 ++++++++++++++ 5 files changed, 208 insertions(+), 48 deletions(-) create mode 100644 src/main/java/org/apache/commons/collections4/bloomfilter/BloomFilterIndexer.java create mode 100644 src/test/java/org/apache/commons/collections4/bloomfilter/BloomFilterIndexerTest.java