mirror of
https://github.com/luxfi/math.git
synced 2026-07-27 03:38:49 +00:00
fix: gofmt -s across repo (CI format check)
This commit is contained in:
@@ -123,7 +123,7 @@ func MulModSlow(x, y, q uint64) uint64 {
|
||||
func mul64(x, y uint64) (hi, lo uint64) {
|
||||
xLo, xHi := x&0xffffffff, x>>32
|
||||
yLo, yHi := y&0xffffffff, y>>32
|
||||
t := xLo*yLo
|
||||
t := xLo * yLo
|
||||
lo = t & 0xffffffff
|
||||
t = (t >> 32) + xHi*yLo
|
||||
w1 := t & 0xffffffff
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
// go run ./cmd/emit_sample_kat --out testdata/sample_kat.json
|
||||
//
|
||||
// Each entry contains:
|
||||
//
|
||||
// Test: "Uniform/q=PulsarQ/i=N" -> param: q
|
||||
// "Ternary/q=PulsarQ/density=0.50/i=N" -> param: q, density
|
||||
// "CenteredBinomial/q=PulsarQ/eta=2/i=N" -> param: q, eta
|
||||
|
||||
Reference in New Issue
Block a user