Skip to content

Commit

Permalink
moving from surge to zhenjl
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenjl committed Oct 26, 2015
1 parent 4c25b55 commit e24b032
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion partitioned/partitioned.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"encoding/binary"
"math"

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

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

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

var (
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/surge/bloom"
"github.com/surge/bloom/partitioned"
"github.com/zhenjl/bloom"
"github.com/zhenjl/bloom/partitioned"
)

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

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

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

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

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

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

var (
Expand Down

0 comments on commit e24b032

Please sign in to comment.