Skip to content

Commit 258dc1c

Browse files
committed
Updating bitset.
1 parent 4eb34b7 commit 258dc1c

File tree

10 files changed

+14
-10
lines changed

10 files changed

+14
-10
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ qa: fmtcheck test vet lint
6464
# Get the dependencies
6565
deps:
6666
GOPATH=$(GOPATH) go get github.com/stretchr/testify
67-
GOPATH=$(GOPATH) go get github.com/willf/bitset
67+
GOPATH=$(GOPATH) go get github.com/bits-and-blooms/bitset
6868
GOPATH=$(GOPATH) go get github.com/golang/lint/golint
6969
GOPATH=$(GOPATH) go get github.com/mschoch/smat
7070
GOPATH=$(GOPATH) go get github.com/dvyukov/go-fuzz/go-fuzz

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ http://arxiv.org/abs/1402.6407 This paper used data from http://lemire.me/data/r
158158
Dependencies are fetched automatically by giving the `-t` flag to `go get`.
159159

160160
they include
161-
- github.com/willf/bitset
161+
- github.com/bits-and-blooms/bitset
162162
- github.com/mschoch/smat
163163
- github.com/glycerine/go-unsnap-stream
164164
- github.com/philhofer/fwd

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ module github.com/RoaringBitmap/roaring
33
go 1.14
44

55
require (
6+
github.com/bits-and-blooms/bitset v1.2.0
67
github.com/dvyukov/go-fuzz v0.0.0-20210429054444-fca39067bc72 // indirect
78
github.com/elazarl/go-bindata-assetfs v1.0.1 // indirect
89
github.com/glycerine/go-unsnap-stream v0.0.0-20181221182339-f9677308dec2
910
github.com/glycerine/goconvey v0.0.0-20190410193231-58a59202ab31 // indirect
1011
github.com/golang/snappy v0.0.1 // indirect
1112
github.com/gopherjs/gopherjs v0.0.0-20190910122728-9d188e94fb99 // indirect
1213
github.com/jtolds/gls v4.20.0+incompatible // indirect
13-
github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae
14+
github.com/mschoch/smat v0.2.0
1415
github.com/philhofer/fwd v1.0.0 // indirect
1516
github.com/stephens2424/writerset v1.0.2 // indirect
1617
github.com/stretchr/testify v1.4.0
17-
github.com/willf/bitset v1.1.10
1818
golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect
1919
golang.org/x/tools v0.0.0-20200928182047-19e03678916f // indirect
2020
)

go.sum

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
github.com/Julusian/godocdown v0.0.0-20170816220326-6d19f8ff2df8/go.mod h1:INZr5t32rG59/5xeltqoCJoNY7e5x/3xoY9WSWVWg74=
2+
github.com/bits-and-blooms/bitset v1.2.0 h1:Kn4yilvwNtMACtf1eYDlG8H77R07mZSPbMjLyS07ChA=
3+
github.com/bits-and-blooms/bitset v1.2.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA=
24
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
35
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
46
github.com/dvyukov/go-fuzz v0.0.0-20210429054444-fca39067bc72 h1:XiR1YwcWcRFzxjAhWK29HQL4nocj0QWJjpeRi/YASV0=
@@ -17,6 +19,8 @@ github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7
1719
github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU=
1820
github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae h1:VeRdUYdCw49yizlSbMEn2SZ+gT+3IUKx8BqxyQdz+BY=
1921
github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae/go.mod h1:qAyveg+e4CE+eKJXWVjKXM4ck2QobLqTDytGJbLLhJg=
22+
github.com/mschoch/smat v0.2.0 h1:8imxQsjDm8yFEAVBe7azKmKSgzSkZXDuKkSq9374khM=
23+
github.com/mschoch/smat v0.2.0/go.mod h1:kc9mz7DoBKqDyiRL7VZN8KvXQMWeTaVnttLRXOlotKw=
2024
github.com/philhofer/fwd v1.0.0 h1:UbZqGr5Y38ApvM/V/jEljVxwocdweyH+vmYvRPBnbqQ=
2125
github.com/philhofer/fwd v1.0.0/go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG3ZVNU=
2226
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=

roaring64/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ qa: fmtcheck test vet lint
6464
# Get the dependencies
6565
deps:
6666
GOPATH=$(GOPATH) go get github.com/stretchr/testify
67-
GOPATH=$(GOPATH) go get github.com/willf/bitset
67+
GOPATH=$(GOPATH) go get github.com/bits-and-blooms/bitset
6868
GOPATH=$(GOPATH) go get github.com/golang/lint/golint
6969
GOPATH=$(GOPATH) go get github.com/mschoch/smat
7070
GOPATH=$(GOPATH) go get github.com/dvyukov/go-fuzz/go-fuzz

roaring64/roaring64_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313

1414
"github.com/RoaringBitmap/roaring"
1515
"github.com/stretchr/testify/assert"
16-
"github.com/willf/bitset"
16+
"github.com/bits-and-blooms/bitset"
1717
)
1818

1919
func TestRoaringIntervalCheck(t *testing.T) {

roaring64/roaring64cow_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"testing"
99

1010
"github.com/stretchr/testify/assert"
11-
"github.com/willf/bitset"
11+
"github.com/bits-and-blooms/bitset"
1212
)
1313

1414
func TestCloneOfCOW(t *testing.T) {

roaring_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"testing"
1010

1111
"github.com/stretchr/testify/assert"
12-
"github.com/willf/bitset"
12+
"github.com/bits-and-blooms/bitset"
1313
)
1414

1515
func TestReverseIteratorCount(t *testing.T) {

roaringcow_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"testing"
99

1010
"github.com/stretchr/testify/assert"
11-
"github.com/willf/bitset"
11+
"github.com/bits-and-blooms/bitset"
1212
)
1313

1414
func TestCloneOfCOW(t *testing.T) {

smat.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ import (
6363
"sort"
6464

6565
"github.com/mschoch/smat"
66-
"github.com/willf/bitset"
66+
"github.com/bits-and-blooms/bitset"
6767
)
6868

6969
// fuzz test using state machine driven by byte stream.

0 commit comments

Comments
 (0)