diff --git a/partitioned/partitioned.go b/partitioned/partitioned.go index 3e07a79..205db27 100644 --- a/partitioned/partitioned.go +++ b/partitioned/partitioned.go @@ -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. diff --git a/partitioned/partitioned_test.go b/partitioned/partitioned_test.go index dd4b9e9..a759e3b 100644 --- a/partitioned/partitioned_test.go +++ b/partitioned/partitioned_test.go @@ -26,7 +26,7 @@ import ( "testing" "github.com/spaolacci/murmur3" - "github.com/zhenjl/bloom" + "github.com/dataence/bloom" "github.com/zhenjl/cityhash" ) diff --git a/scalable/scalable.go b/scalable/scalable.go index 27beb33..8c063c5 100644 --- a/scalable/scalable.go +++ b/scalable/scalable.go @@ -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 diff --git a/scalable/scalable_test.go b/scalable/scalable_test.go index f469c13..8531043 100644 --- a/scalable/scalable_test.go +++ b/scalable/scalable_test.go @@ -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" ) diff --git a/standard/standard.go b/standard/standard.go index 7fca4a1..ad46e34 100644 --- a/standard/standard.go +++ b/standard/standard.go @@ -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 diff --git a/standard/standard_test.go b/standard/standard_test.go index bd44f98..bc8606f 100644 --- a/standard/standard_test.go +++ b/standard/standard_test.go @@ -26,7 +26,7 @@ import ( "testing" "github.com/spaolacci/murmur3" - "github.com/zhenjl/bloom" + "github.com/dataence/bloom" "github.com/zhenjl/cityhash" )