Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion partitioned/partitioned.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"math"

"github.com/willf/bitset"
"github.com/zhenjl/bloom"
"github.com/dataence/bloom"
)

// PartitionedBloom is a variant implementation of the standard bloom filter.
Expand Down
2 changes: 1 addition & 1 deletion partitioned/partitioned_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
"testing"

"github.com/spaolacci/murmur3"
"github.com/zhenjl/bloom"
"github.com/dataence/bloom"
"github.com/zhenjl/cityhash"
)

Expand Down
4 changes: 2 additions & 2 deletions scalable/scalable.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
"hash/fnv"
"math"

"github.com/zhenjl/bloom"
"github.com/zhenjl/bloom/partitioned"
"github.com/dataence/bloom"
"github.com/dataence/bloom/partitioned"
)

// ScalableBloom is an implementation of the Scalable Bloom Filter that "addresses the problem of having
Expand Down
6 changes: 3 additions & 3 deletions scalable/scalable_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ import (
"testing"

"github.com/spaolacci/murmur3"
"github.com/zhenjl/bloom"
"github.com/zhenjl/bloom/partitioned"
"github.com/zhenjl/bloom/standard"
"github.com/dataence/bloom"
"github.com/dataence/bloom/partitioned"
"github.com/dataence/bloom/standard"
"github.com/zhenjl/cityhash"
)

Expand Down
2 changes: 1 addition & 1 deletion standard/standard.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"math"

"github.com/willf/bitset"
"github.com/zhenjl/bloom"
"github.com/dataence/bloom"
)

// StandardBloom is the classic bloom filter implementation
Expand Down
2 changes: 1 addition & 1 deletion standard/standard_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
"testing"

"github.com/spaolacci/murmur3"
"github.com/zhenjl/bloom"
"github.com/dataence/bloom"
"github.com/zhenjl/cityhash"
)

Expand Down