Files
lattigo/utils/utils.go
Jean-Philippe Bossuat e281f818ae statickcheck
2022-06-13 22:55:24 +02:00

235 lines
5.5 KiB
Go

package utils
import (
"crypto/rand"
"encoding/binary"
"math/bits"
)
// RandUint64 return a random value between 0 and 0xFFFFFFFFFFFFFFFF
func RandUint64() uint64 {
b := []byte{0, 0, 0, 0, 0, 0, 0, 0}
if _, err := rand.Read(b); err != nil {
panic(err)
}
return binary.BigEndian.Uint64(b)
}
// RandFloat64 returns a random float between min and max
func RandFloat64(min, max float64) float64 {
b := []byte{0, 0, 0, 0, 0, 0, 0, 0}
if _, err := rand.Read(b); err != nil {
panic(err)
}
f := float64(binary.BigEndian.Uint64(b)) / 1.8446744073709552e+19
return min + f*(max-min)
}
// RandComplex128 returns a random complex with the real and imaginary part between min and max
func RandComplex128(min, max float64) complex128 {
return complex(RandFloat64(min, max), RandFloat64(min, max))
}
// EqualSliceUint64 checks the equality between two uint64 slices.
func EqualSliceUint64(a, b []uint64) (v bool) {
v = true
for i := range a {
v = v && (a[i] == b[i])
}
return
}
// EqualSliceInt64 checks the equality between two int64 slices.
func EqualSliceInt64(a, b []int64) (v bool) {
v = true
for i := range a {
v = v && (a[i] == b[i])
}
return
}
// EqualSliceUint8 checks the equality between two uint8 slices.
func EqualSliceUint8(a, b []uint8) (v bool) {
v = true
for i := range a {
v = v && (a[i] == b[i])
}
return
}
// IsInSliceUint64 checks if x is in slice.
func IsInSliceUint64(x uint64, slice []uint64) (v bool) {
for i := range slice {
v = v || (slice[i] == x)
}
return
}
// IsInSliceInt checks if x is in slice.
func IsInSliceInt(x int, slice []int) (v bool) {
for i := range slice {
v = v || (slice[i] == x)
}
return
}
// MinUint64 returns the minimum value of the input of uint64 values.
func MinUint64(a, b uint64) (r uint64) {
if a <= b {
return a
}
return b
}
// MinInt returns the minimum value of the input of int values.
func MinInt(a, b int) (r int) {
if a <= b {
return a
}
return b
}
// MaxUint64 returns the maximum value of the input slice of uint64 values.
func MaxUint64(a, b uint64) (r uint64) {
if a >= b {
return a
}
return b
}
// MaxInt returns the maximum value of the input of int values.
func MaxInt(a, b int) (r int) {
if a >= b {
return a
}
return b
}
// MaxFloat64 returns the maximum value of the input slice of float64 values.
func MaxFloat64(a, b float64) (r float64) {
if a >= b {
return a
}
return b
}
// MaxSliceUint64 returns the maximum value of the input slice of uint64 values.
func MaxSliceUint64(slice []uint64) (max uint64) {
for i := range slice {
max = MaxUint64(max, slice[i])
}
return
}
// BitReverse64 returns the bit-reverse value of the input value, within a context of 2^bitLen.
func BitReverse64(index, bitLen uint64) uint64 {
return bits.Reverse64(index) >> (64 - bitLen)
}
// HammingWeight64 returns the hammingweight if the input value.
func HammingWeight64(x uint64) uint64 {
x -= (x >> 1) & 0x5555555555555555
x = (x & 0x3333333333333333) + ((x >> 2) & 0x3333333333333333)
x = (x + (x >> 4)) & 0x0f0f0f0f0f0f0f0f
return ((x * 0x0101010101010101) & 0xffffffffffffffff) >> 56
}
// AllDistinct returns true if all elements in s are distinct, and false otherwise.
func AllDistinct(s []uint64) bool {
m := make(map[uint64]struct{}, len(s))
for _, si := range s {
if _, exists := m[si]; exists {
return false
}
m[si] = struct{}{}
}
return true
}
// RotateUint64Slice returns a new slice corresponding to s rotated by k positions to the left.
func RotateUint64Slice(s []uint64, k int) []uint64 {
if k == 0 || len(s) == 0 {
return s
}
r := k % len(s)
if r < 0 {
r = r + len(s)
}
ret := make([]uint64, len(s))
copy(ret[:len(s)-r], s[r:])
copy(ret[len(s)-r:], s[:r])
return ret
}
// RotateInt64Slice returns a new slice corresponding to s rotated by k positions to the left.
func RotateInt64Slice(s []int64, k int) []int64 {
if k == 0 || len(s) == 0 {
return s
}
r := k % len(s)
if r < 0 {
r = r + len(s)
}
ret := make([]int64, len(s))
copy(ret[:len(s)-r], s[r:])
copy(ret[len(s)-r:], s[:r])
return ret
}
// RotateUint64Slots returns a new slice corresponding to s where each half of the slice
// have been rotated by k positions to the left.
func RotateUint64Slots(s []uint64, k int) []uint64 {
ret := make([]uint64, len(s))
slots := len(s) >> 1
copy(ret[:slots], RotateUint64Slice(s[:slots], k))
copy(ret[slots:], RotateUint64Slice(s[slots:], k))
return ret
}
// RotateComplex128Slice returns a new slice corresponding to s rotated by k positions to the left.
func RotateComplex128Slice(s []complex128, k int) []complex128 {
if k == 0 || len(s) == 0 {
return s
}
r := k % len(s)
if r < 0 {
r = r + len(s)
}
ret := make([]complex128, len(s))
copy(ret[:len(s)-r], s[r:])
copy(ret[len(s)-r:], s[:r])
return ret
}
// RotateFloat64Slice returns a new slice corresponding to s rotated by k positions to the left.
func RotateFloat64Slice(s []float64, k int) []float64 {
if k == 0 || len(s) == 0 {
return s
}
r := k % len(s)
if r < 0 {
r = r + len(s)
}
ret := make([]float64, len(s))
copy(ret[:len(s)-r], s[r:])
copy(ret[len(s)-r:], s[:r])
return ret
}
// RotateSlice takes as input an interface slice and returns a new interface slice
// corresponding to s rotated by k positions to the left.
// s.(type) can be either []complex128, []float64, []uint64 or []int64.
func RotateSlice(s interface{}, k int) interface{} {
switch el := s.(type) {
case []complex128:
return RotateComplex128Slice(el, k)
case []float64:
return RotateFloat64Slice(el, k)
case []uint64:
return RotateUint64Slice(el, k)
case []int64:
return RotateInt64Slice(el, k)
}
return nil
}