1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
// This file tests the popcnt functions
package bitset
import (
"testing"
)
func TestPopcntSlice(t *testing.T) {
s := []uint64{2, 3, 5, 7, 11, 13, 17, 19, 23, 29}
res := popcntSlice(s)
const l uint64 = 27
if res != l {
t.Errorf("Wrong popcount %d != %d", res, l)
}
}
func TestPopcntMaskSlice(t *testing.T) {
s := []uint64{2, 3, 5, 7, 11, 13, 17, 19, 23, 29}
m := []uint64{31, 37, 41, 43, 47, 53, 59, 61, 67, 71}
res := popcntMaskSlice(s, m)
const l uint64 = 9
if res != l {
t.Errorf("Wrong mask %d != %d", res, l)
}
}
func TestPopcntAndSlice(t *testing.T) {
s := []uint64{2, 3, 5, 7, 11, 13, 17, 19, 23, 29}
m := []uint64{31, 37, 41, 43, 47, 53, 59, 61, 67, 71}
res := popcntAndSlice(s, m)
const l uint64 = 18
if res != l {
t.Errorf("Wrong And %d != %d", res, l)
}
}
func TestPopcntOrSlice(t *testing.T) {
s := []uint64{2, 3, 5, 7, 11, 13, 17, 19, 23, 29}
m := []uint64{31, 37, 41, 43, 47, 53, 59, 61, 67, 71}
res := popcntOrSlice(s, m)
const l uint64 = 50
if res != l {
t.Errorf("Wrong OR %d != %d", res, l)
}
}
func TestPopcntXorSlice(t *testing.T) {
s := []uint64{2, 3, 5, 7, 11, 13, 17, 19, 23, 29}
m := []uint64{31, 37, 41, 43, 47, 53, 59, 61, 67, 71}
res := popcntXorSlice(s, m)
const l uint64 = 32
if res != l {
t.Errorf("Wrong OR %d != %d", res, l)
}
}
|