File tree Expand file tree Collapse file tree 3 files changed +4
-7
lines changed
main/java/org/fastfilter/xor Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 44import org .fastfilter .utils .Hash ;
55
66/**
7- * The Xor Filter , a new algorithm that can replace a Bloom filter.
7+ * The xor filter , a new algorithm that can replace a Bloom filter.
88 *
99 * It needs 1.23 log(1/fpp) bits per key. It is related to the BDZ algorithm [1]
1010 * (a minimal perfect hash function algorithm).
Original file line number Diff line number Diff line change 66import org .fastfilter .utils .Hash ;
77
88/**
9- * The Xor Filter , a new algorithm that can replace a Bloom filter.
9+ * The xor filter , a new algorithm that can replace a Bloom filter.
1010 *
1111 * It needs 1.23 log(1/fpp) bits per key. It is related to the BDZ algorithm [1]
1212 * (a minimal perfect hash function algorithm).
Original file line number Diff line number Diff line change 11package org .fastfilter ;
22
3+ import static junit .framework .TestCase .assertTrue ;
4+
35import java .util .Arrays ;
4- import java .util .EnumSet ;
56import java .util .concurrent .ThreadLocalRandom ;
67import java .util .stream .LongStream ;
78
8- import org .fastfilter .Filter ;
99import org .fastfilter .utils .Hash ;
1010
11- import static junit .framework .TestCase .assertTrue ;
12- import static org .fastfilter .TestFilterType .*;
13-
1411public class SimpleFuzzer {
1512
1613 public static void main (String ... args ) {
You can’t perform that action at this time.
0 commit comments