blob: b8e0778ca3201783a524a5c473754d74f94db946 [file] [log] [blame]
Robert Griesemerdb3bf9c2009-08-14 11:53:27 -07001// Copyright 2009 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package big
6
Adam Langley65063bc2009-11-05 15:55:41 -08007import (
Robert Griesemer5a1d3322009-12-15 15:33:31 -08008 "bytes"
9 "encoding/hex"
Robert Griesemerdbb62322010-05-15 10:23:41 -070010 "fmt"
Robert Griesemerfc78c5a2011-12-22 14:15:41 -080011 "math/rand"
Russ Cox9ee21f92016-10-10 16:18:43 -040012 "strings"
Robert Griesemer5a1d3322009-12-15 15:33:31 -080013 "testing"
14 "testing/quick"
Adam Langley65063bc2009-11-05 15:55:41 -080015)
Robert Griesemerdb3bf9c2009-08-14 11:53:27 -070016
Robert Griesemerb9caa4a2010-05-03 18:48:05 -070017func isNormalized(x *Int) bool {
18 if len(x.abs) == 0 {
19 return !x.neg
20 }
21 // len(x.abs) > 0
22 return x.abs[len(x.abs)-1] != 0
Robert Griesemerdb3bf9c2009-08-14 11:53:27 -070023}
24
Robert Griesemere5874222009-08-15 11:43:54 -070025type funZZ func(z, x, y *Int) *Int
Russ Cox650bff62009-10-06 14:55:39 -070026type argZZ struct {
Robert Griesemer5a1d3322009-12-15 15:33:31 -080027 z, x, y *Int
Russ Cox650bff62009-10-06 14:55:39 -070028}
Robert Griesemerdb3bf9c2009-08-14 11:53:27 -070029
30var sumZZ = []argZZ{
Robert Griesemer34788912010-10-22 10:06:33 -070031 {NewInt(0), NewInt(0), NewInt(0)},
32 {NewInt(1), NewInt(1), NewInt(0)},
33 {NewInt(1111111110), NewInt(123456789), NewInt(987654321)},
34 {NewInt(-1), NewInt(-1), NewInt(0)},
35 {NewInt(864197532), NewInt(-123456789), NewInt(987654321)},
36 {NewInt(-1111111110), NewInt(-123456789), NewInt(-987654321)},
Robert Griesemerdb3bf9c2009-08-14 11:53:27 -070037}
38
Robert Griesemer88742ef2009-08-18 10:06:15 -070039var prodZZ = []argZZ{
Robert Griesemer34788912010-10-22 10:06:33 -070040 {NewInt(0), NewInt(0), NewInt(0)},
41 {NewInt(0), NewInt(1), NewInt(0)},
42 {NewInt(1), NewInt(1), NewInt(1)},
43 {NewInt(-991 * 991), NewInt(991), NewInt(-991)},
Adam Langley65063bc2009-11-05 15:55:41 -080044 // TODO(gri) add larger products
Robert Griesemer88742ef2009-08-18 10:06:15 -070045}
46
Robert Griesemer97bcf042010-07-12 16:09:27 -070047func TestSignZ(t *testing.T) {
48 var zero Int
49 for _, a := range sumZZ {
50 s := a.z.Sign()
51 e := a.z.Cmp(&zero)
52 if s != e {
53 t.Errorf("got %d; want %d for z = %v", s, e, a.z)
54 }
55 }
56}
57
Robert Griesemerdb3bf9c2009-08-14 11:53:27 -070058func TestSetZ(t *testing.T) {
59 for _, a := range sumZZ {
Robert Griesemer5a1d3322009-12-15 15:33:31 -080060 var z Int
61 z.Set(a.z)
Robert Griesemerb9caa4a2010-05-03 18:48:05 -070062 if !isNormalized(&z) {
63 t.Errorf("%v is not normalized", z)
64 }
Adam Langley19418552009-11-11 13:21:37 -080065 if (&z).Cmp(a.z) != 0 {
Robert Griesemer40621d52009-11-09 12:07:39 -080066 t.Errorf("got z = %v; want %v", z, a.z)
Robert Griesemerdb3bf9c2009-08-14 11:53:27 -070067 }
68 }
69}
70
Robert Griesemer97bcf042010-07-12 16:09:27 -070071func TestAbsZ(t *testing.T) {
72 var zero Int
73 for _, a := range sumZZ {
74 var z Int
75 z.Abs(a.z)
76 var e Int
77 e.Set(a.z)
78 if e.Cmp(&zero) < 0 {
79 e.Sub(&zero, &e)
80 }
81 if z.Cmp(&e) != 0 {
82 t.Errorf("got z = %v; want %v", z, e)
83 }
84 }
85}
86
Robert Griesemerdb3bf9c2009-08-14 11:53:27 -070087func testFunZZ(t *testing.T, msg string, f funZZ, a argZZ) {
Robert Griesemer5a1d3322009-12-15 15:33:31 -080088 var z Int
89 f(&z, a.x, a.y)
Robert Griesemerb9caa4a2010-05-03 18:48:05 -070090 if !isNormalized(&z) {
Rob Pikefa7791e2013-09-27 10:09:15 +100091 t.Errorf("%s%v is not normalized", msg, z)
Robert Griesemerb9caa4a2010-05-03 18:48:05 -070092 }
Adam Langley19418552009-11-11 13:21:37 -080093 if (&z).Cmp(a.z) != 0 {
Robert Griesemer40621d52009-11-09 12:07:39 -080094 t.Errorf("%s%+v\n\tgot z = %v; want %v", msg, a, &z, a.z)
Robert Griesemerdb3bf9c2009-08-14 11:53:27 -070095 }
96}
97
Robert Griesemer88742ef2009-08-18 10:06:15 -070098func TestSumZZ(t *testing.T) {
Robert Griesemer5a1d3322009-12-15 15:33:31 -080099 AddZZ := func(z, x, y *Int) *Int { return z.Add(x, y) }
100 SubZZ := func(z, x, y *Int) *Int { return z.Sub(x, y) }
Robert Griesemerdb3bf9c2009-08-14 11:53:27 -0700101 for _, a := range sumZZ {
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800102 arg := a
103 testFunZZ(t, "AddZZ", AddZZ, arg)
Robert Griesemerdb3bf9c2009-08-14 11:53:27 -0700104
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800105 arg = argZZ{a.z, a.y, a.x}
106 testFunZZ(t, "AddZZ symmetric", AddZZ, arg)
Robert Griesemerdb3bf9c2009-08-14 11:53:27 -0700107
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800108 arg = argZZ{a.x, a.z, a.y}
109 testFunZZ(t, "SubZZ", SubZZ, arg)
Robert Griesemerdb3bf9c2009-08-14 11:53:27 -0700110
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800111 arg = argZZ{a.y, a.z, a.x}
112 testFunZZ(t, "SubZZ symmetric", SubZZ, arg)
Robert Griesemerdb3bf9c2009-08-14 11:53:27 -0700113 }
114}
Robert Griesemer88742ef2009-08-18 10:06:15 -0700115
Robert Griesemer88742ef2009-08-18 10:06:15 -0700116func TestProdZZ(t *testing.T) {
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800117 MulZZ := func(z, x, y *Int) *Int { return z.Mul(x, y) }
Robert Griesemer88742ef2009-08-18 10:06:15 -0700118 for _, a := range prodZZ {
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800119 arg := a
120 testFunZZ(t, "MulZZ", MulZZ, arg)
Robert Griesemer88742ef2009-08-18 10:06:15 -0700121
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800122 arg = argZZ{a.z, a.y, a.x}
123 testFunZZ(t, "MulZZ symmetric", MulZZ, arg)
Robert Griesemer88742ef2009-08-18 10:06:15 -0700124 }
125}
126
Robert Griesemerb2183702010-04-27 19:16:08 -0700127// mulBytes returns x*y via grade school multiplication. Both inputs
128// and the result are assumed to be in big-endian representation (to
129// match the semantics of Int.Bytes and Int.SetBytes).
130func mulBytes(x, y []byte) []byte {
131 z := make([]byte, len(x)+len(y))
Robert Griesemer88742ef2009-08-18 10:06:15 -0700132
Robert Griesemerb2183702010-04-27 19:16:08 -0700133 // multiply
134 k0 := len(z) - 1
135 for j := len(y) - 1; j >= 0; j-- {
136 d := int(y[j])
137 if d != 0 {
138 k := k0
139 carry := 0
140 for i := len(x) - 1; i >= 0; i-- {
141 t := int(z[k]) + int(x[i])*d + carry
142 z[k], carry = byte(t), t>>8
143 k--
144 }
145 z[k] = byte(carry)
Robert Griesemer88742ef2009-08-18 10:06:15 -0700146 }
Robert Griesemerb2183702010-04-27 19:16:08 -0700147 k0--
148 }
149
150 // normalize (remove leading 0's)
151 i := 0
152 for i < len(z) && z[i] == 0 {
153 i++
154 }
155
156 return z[i:]
157}
158
Robert Griesemerb2183702010-04-27 19:16:08 -0700159func checkMul(a, b []byte) bool {
160 var x, y, z1 Int
161 x.SetBytes(a)
162 y.SetBytes(b)
163 z1.Mul(&x, &y)
164
165 var z2 Int
166 z2.SetBytes(mulBytes(a, b))
167
168 return z1.Cmp(&z2) == 0
169}
170
Robert Griesemerb2183702010-04-27 19:16:08 -0700171func TestMul(t *testing.T) {
172 if err := quick.Check(checkMul, nil); err != nil {
173 t.Error(err)
Robert Griesemer88742ef2009-08-18 10:06:15 -0700174 }
175}
Adam Langley65063bc2009-11-05 15:55:41 -0800176
Robert Griesemere3515332010-10-25 17:45:43 -0700177var mulRangesZ = []struct {
Robert Griesemerdbb62322010-05-15 10:23:41 -0700178 a, b int64
179 prod string
Robert Griesemere3515332010-10-25 17:45:43 -0700180}{
Robert Griesemerdbb62322010-05-15 10:23:41 -0700181 // entirely positive ranges are covered by mulRangesN
Robert Griesemer34788912010-10-22 10:06:33 -0700182 {-1, 1, "0"},
183 {-2, -1, "2"},
184 {-3, -2, "6"},
185 {-3, -1, "-6"},
186 {1, 3, "6"},
187 {-10, -10, "-10"},
188 {0, -1, "1"}, // empty range
189 {-1, -100, "1"}, // empty range
190 {-1, 1, "0"}, // range includes 0
191 {-1e9, 0, "0"}, // range includes 0
192 {-1e9, 1e9, "0"}, // range includes 0
193 {-10, -1, "3628800"}, // 10!
194 {-20, -2, "-2432902008176640000"}, // -20!
195 {-99, -1,
Robert Griesemerdbb62322010-05-15 10:23:41 -0700196 "-933262154439441526816992388562667004907159682643816214685929" +
197 "638952175999932299156089414639761565182862536979208272237582" +
198 "511852109168640000000000000000000000", // -99!
199 },
200}
201
Robert Griesemerdbb62322010-05-15 10:23:41 -0700202func TestMulRangeZ(t *testing.T) {
203 var tmp Int
204 // test entirely positive ranges
205 for i, r := range mulRangesN {
206 prod := tmp.MulRange(int64(r.a), int64(r.b)).String()
207 if prod != r.prod {
208 t.Errorf("#%da: got %s; want %s", i, prod, r.prod)
209 }
210 }
211 // test other ranges
212 for i, r := range mulRangesZ {
213 prod := tmp.MulRange(r.a, r.b).String()
214 if prod != r.prod {
215 t.Errorf("#%db: got %s; want %s", i, prod, r.prod)
216 }
217 }
218}
219
Robert Griesemer919a6fb2015-04-01 11:49:12 -0700220func TestBinomial(t *testing.T) {
221 var z Int
222 for _, test := range []struct {
223 n, k int64
224 want string
225 }{
226 {0, 0, "1"},
227 {0, 1, "0"},
228 {1, 0, "1"},
229 {1, 1, "1"},
230 {1, 10, "0"},
231 {4, 0, "1"},
232 {4, 1, "4"},
233 {4, 2, "6"},
234 {4, 3, "4"},
235 {4, 4, "1"},
236 {10, 1, "10"},
237 {10, 9, "10"},
238 {10, 5, "252"},
239 {11, 5, "462"},
240 {11, 6, "462"},
241 {100, 10, "17310309456440"},
242 {100, 90, "17310309456440"},
243 {1000, 10, "263409560461970212832400"},
244 {1000, 990, "263409560461970212832400"},
245 } {
246 if got := z.Binomial(test.n, test.k).String(); got != test.want {
247 t.Errorf("Binomial(%d, %d) = %s; want %s", test.n, test.k, got, test.want)
248 }
249 }
250}
251
252func BenchmarkBinomial(b *testing.B) {
253 var z Int
254 for i := b.N - 1; i >= 0; i-- {
255 z.Binomial(1000, 990)
256 }
257}
258
Robert Griesemere3515332010-10-25 17:45:43 -0700259// Examples from the Go Language Spec, section "Arithmetic operators"
260var divisionSignsTests = []struct {
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800261 x, y int64
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700262 q, r int64 // T-division
263 d, m int64 // Euclidian division
Robert Griesemere3515332010-10-25 17:45:43 -0700264}{
Robert Griesemer34788912010-10-22 10:06:33 -0700265 {5, 3, 1, 2, 1, 2},
266 {-5, 3, -1, -2, -2, 1},
267 {5, -3, -1, 2, -1, 2},
268 {-5, -3, 1, -2, 2, 1},
269 {1, 2, 0, 1, 0, 1},
270 {8, 4, 2, 0, 2, 0},
Adam Langley65063bc2009-11-05 15:55:41 -0800271}
272
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700273func TestDivisionSigns(t *testing.T) {
274 for i, test := range divisionSignsTests {
275 x := NewInt(test.x)
276 y := NewInt(test.y)
277 q := NewInt(test.q)
278 r := NewInt(test.r)
279 d := NewInt(test.d)
280 m := NewInt(test.m)
Adam Langley65063bc2009-11-05 15:55:41 -0800281
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700282 q1 := new(Int).Quo(x, y)
283 r1 := new(Int).Rem(x, y)
284 if !isNormalized(q1) {
285 t.Errorf("#%d Quo: %v is not normalized", i, *q1)
286 }
287 if !isNormalized(r1) {
288 t.Errorf("#%d Rem: %v is not normalized", i, *r1)
289 }
290 if q1.Cmp(q) != 0 || r1.Cmp(r) != 0 {
291 t.Errorf("#%d QuoRem: got (%s, %s), want (%s, %s)", i, q1, r1, q, r)
292 }
293
294 q2, r2 := new(Int).QuoRem(x, y, new(Int))
295 if !isNormalized(q2) {
296 t.Errorf("#%d Quo: %v is not normalized", i, *q2)
297 }
298 if !isNormalized(r2) {
299 t.Errorf("#%d Rem: %v is not normalized", i, *r2)
300 }
301 if q2.Cmp(q) != 0 || r2.Cmp(r) != 0 {
302 t.Errorf("#%d QuoRem: got (%s, %s), want (%s, %s)", i, q2, r2, q, r)
303 }
304
305 d1 := new(Int).Div(x, y)
306 m1 := new(Int).Mod(x, y)
307 if !isNormalized(d1) {
308 t.Errorf("#%d Div: %v is not normalized", i, *d1)
309 }
310 if !isNormalized(m1) {
311 t.Errorf("#%d Mod: %v is not normalized", i, *m1)
312 }
313 if d1.Cmp(d) != 0 || m1.Cmp(m) != 0 {
314 t.Errorf("#%d DivMod: got (%s, %s), want (%s, %s)", i, d1, m1, d, m)
315 }
316
317 d2, m2 := new(Int).DivMod(x, y, new(Int))
318 if !isNormalized(d2) {
319 t.Errorf("#%d Div: %v is not normalized", i, *d2)
320 }
321 if !isNormalized(m2) {
322 t.Errorf("#%d Mod: %v is not normalized", i, *m2)
323 }
324 if d2.Cmp(d) != 0 || m2.Cmp(m) != 0 {
325 t.Errorf("#%d DivMod: got (%s, %s), want (%s, %s)", i, d2, m2, d, m)
Adam Langley65063bc2009-11-05 15:55:41 -0800326 }
327 }
328}
329
Robert Griesemerde47e9c2015-01-16 15:11:26 -0800330func norm(x nat) nat {
331 i := len(x)
332 for i > 0 && x[i-1] == 0 {
333 i--
334 }
335 return x[:i]
336}
337
338func TestBits(t *testing.T) {
Robert Griesemerc20a0182015-02-25 10:20:28 -0800339 for _, test := range []nat{
340 nil,
341 {0},
342 {1},
343 {0, 1, 2, 3, 4},
344 {4, 3, 2, 1, 0},
345 {4, 3, 2, 1, 0, 0, 0, 0},
346 } {
Robert Griesemerde47e9c2015-01-16 15:11:26 -0800347 var z Int
348 z.neg = true
349 got := z.SetBits(test)
350 want := norm(test)
351 if got.abs.cmp(want) != 0 {
352 t.Errorf("SetBits(%v) = %v; want %v", test, got.abs, want)
353 }
354
355 if got.neg {
Robert Griesemerc20a0182015-02-25 10:20:28 -0800356 t.Errorf("SetBits(%v): got negative result", test)
Robert Griesemerde47e9c2015-01-16 15:11:26 -0800357 }
358
359 bits := nat(z.Bits())
360 if bits.cmp(want) != 0 {
361 t.Errorf("%v.Bits() = %v; want %v", z.abs, bits, want)
362 }
363 }
364}
365
Adam Langley65063bc2009-11-05 15:55:41 -0800366func checkSetBytes(b []byte) bool {
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800367 hex1 := hex.EncodeToString(new(Int).SetBytes(b).Bytes())
368 hex2 := hex.EncodeToString(b)
Adam Langley65063bc2009-11-05 15:55:41 -0800369
370 for len(hex1) < len(hex2) {
Robert Griesemer16989342009-11-09 21:09:34 -0800371 hex1 = "0" + hex1
Adam Langley65063bc2009-11-05 15:55:41 -0800372 }
373
374 for len(hex1) > len(hex2) {
Robert Griesemer16989342009-11-09 21:09:34 -0800375 hex2 = "0" + hex2
Adam Langley65063bc2009-11-05 15:55:41 -0800376 }
377
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800378 return hex1 == hex2
Adam Langley65063bc2009-11-05 15:55:41 -0800379}
380
Adam Langley65063bc2009-11-05 15:55:41 -0800381func TestSetBytes(t *testing.T) {
Robert Griesemerb2183702010-04-27 19:16:08 -0700382 if err := quick.Check(checkSetBytes, nil); err != nil {
Robert Griesemer40621d52009-11-09 12:07:39 -0800383 t.Error(err)
Adam Langley65063bc2009-11-05 15:55:41 -0800384 }
385}
386
Adam Langley65063bc2009-11-05 15:55:41 -0800387func checkBytes(b []byte) bool {
Robert Griesemere2882712015-08-21 11:30:19 -0700388 // trim leading zero bytes since Bytes() won't return them
389 // (was issue 12231)
390 for len(b) > 0 && b[0] == 0 {
391 b = b[1:]
392 }
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800393 b2 := new(Int).SetBytes(b).Bytes()
Matthew Dempsky46811d22013-01-07 10:03:49 +1100394 return bytes.Equal(b, b2)
Adam Langley65063bc2009-11-05 15:55:41 -0800395}
396
Adam Langley65063bc2009-11-05 15:55:41 -0800397func TestBytes(t *testing.T) {
Jeremy Schlatterff1f3a12015-03-27 03:29:06 +0000398 if err := quick.Check(checkBytes, nil); err != nil {
Robert Griesemer40621d52009-11-09 12:07:39 -0800399 t.Error(err)
Adam Langley65063bc2009-11-05 15:55:41 -0800400 }
401}
402
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700403func checkQuo(x, y []byte) bool {
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800404 u := new(Int).SetBytes(x)
405 v := new(Int).SetBytes(y)
Adam Langley65063bc2009-11-05 15:55:41 -0800406
407 if len(v.abs) == 0 {
Robert Griesemer40621d52009-11-09 12:07:39 -0800408 return true
Adam Langley65063bc2009-11-05 15:55:41 -0800409 }
410
Evan Shaw76cbbc82010-04-20 20:39:36 -0700411 r := new(Int)
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700412 q, r := new(Int).QuoRem(u, v, r)
Adam Langley65063bc2009-11-05 15:55:41 -0800413
Adam Langley19418552009-11-11 13:21:37 -0800414 if r.Cmp(v) >= 0 {
Robert Griesemer40621d52009-11-09 12:07:39 -0800415 return false
Adam Langley65063bc2009-11-05 15:55:41 -0800416 }
417
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800418 uprime := new(Int).Set(q)
419 uprime.Mul(uprime, v)
420 uprime.Add(uprime, r)
Adam Langley65063bc2009-11-05 15:55:41 -0800421
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800422 return uprime.Cmp(u) == 0
Adam Langley65063bc2009-11-05 15:55:41 -0800423}
424
Robert Griesemere3515332010-10-25 17:45:43 -0700425var quoTests = []struct {
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800426 x, y string
427 q, r string
Robert Griesemere3515332010-10-25 17:45:43 -0700428}{
Robert Griesemer34788912010-10-22 10:06:33 -0700429 {
Adam Langleydb4e48e2009-11-06 11:36:21 -0800430 "476217953993950760840509444250624797097991362735329973741718102894495832294430498335824897858659711275234906400899559094370964723884706254265559534144986498357",
431 "9353930466774385905609975137998169297361893554149986716853295022578535724979483772383667534691121982974895531435241089241440253066816724367338287092081996",
432 "50911",
433 "1",
434 },
Robert Griesemer34788912010-10-22 10:06:33 -0700435 {
Adam Langley19418552009-11-11 13:21:37 -0800436 "11510768301994997771168",
437 "1328165573307167369775",
438 "8",
439 "885443715537658812968",
440 },
Adam Langleydb4e48e2009-11-06 11:36:21 -0800441}
442
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700443func TestQuo(t *testing.T) {
444 if err := quick.Check(checkQuo, nil); err != nil {
Robert Griesemer40621d52009-11-09 12:07:39 -0800445 t.Error(err)
Adam Langley65063bc2009-11-05 15:55:41 -0800446 }
Adam Langleydb4e48e2009-11-06 11:36:21 -0800447
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700448 for i, test := range quoTests {
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800449 x, _ := new(Int).SetString(test.x, 10)
450 y, _ := new(Int).SetString(test.y, 10)
451 expectedQ, _ := new(Int).SetString(test.q, 10)
452 expectedR, _ := new(Int).SetString(test.r, 10)
Adam Langleydb4e48e2009-11-06 11:36:21 -0800453
Evan Shaw76cbbc82010-04-20 20:39:36 -0700454 r := new(Int)
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700455 q, r := new(Int).QuoRem(x, y, r)
Adam Langleydb4e48e2009-11-06 11:36:21 -0800456
Adam Langley19418552009-11-11 13:21:37 -0800457 if q.Cmp(expectedQ) != 0 || r.Cmp(expectedR) != 0 {
Robert Griesemer40621d52009-11-09 12:07:39 -0800458 t.Errorf("#%d got (%s, %s) want (%s, %s)", i, q, r, expectedQ, expectedR)
Adam Langleydb4e48e2009-11-06 11:36:21 -0800459 }
460 }
Adam Langley65063bc2009-11-05 15:55:41 -0800461}
462
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700463func TestQuoStepD6(t *testing.T) {
Adam Langley65063bc2009-11-05 15:55:41 -0800464 // See Knuth, Volume 2, section 4.3.1, exercise 21. This code exercises
465 // a code path which only triggers 1 in 10^{-19} cases.
466
Evan Shaw841a32d2010-04-22 16:57:29 -0700467 u := &Int{false, nat{0, 0, 1 + 1<<(_W-1), _M ^ (1 << (_W - 1))}}
468 v := &Int{false, nat{5, 2 + 1<<(_W-1), 1 << (_W - 1)}}
Adam Langley65063bc2009-11-05 15:55:41 -0800469
Evan Shaw76cbbc82010-04-20 20:39:36 -0700470 r := new(Int)
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700471 q, r := new(Int).QuoRem(u, v, r)
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800472 const expectedQ64 = "18446744073709551613"
473 const expectedR64 = "3138550867693340382088035895064302439801311770021610913807"
474 const expectedQ32 = "4294967293"
475 const expectedR32 = "39614081266355540837921718287"
Adam Langley17021f42009-11-06 09:05:19 -0800476 if q.String() != expectedQ64 && q.String() != expectedQ32 ||
Robert Griesemer56eca9d2009-11-06 11:00:06 -0800477 r.String() != expectedR64 && r.String() != expectedR32 {
Robert Griesemer40621d52009-11-09 12:07:39 -0800478 t.Errorf("got (%s, %s) want (%s, %s) or (%s, %s)", q, r, expectedQ64, expectedR64, expectedQ32, expectedR32)
Adam Langley65063bc2009-11-05 15:55:41 -0800479 }
480}
481
Russ Cox3a907282016-10-06 22:42:20 -0400482func BenchmarkQuoRem(b *testing.B) {
483 x, _ := new(Int).SetString("153980389784927331788354528594524332344709972855165340650588877572729725338415474372475094155672066328274535240275856844648695200875763869073572078279316458648124537905600131008790701752441155668003033945258023841165089852359980273279085783159654751552359397986180318708491098942831252291841441726305535546071", 0)
484 y, _ := new(Int).SetString("7746362281539803897849273317883545285945243323447099728551653406505888775727297253384154743724750941556720663282745352402758568446486952008757638690735720782793164586481245379056001310087907017524411556680030339452580238411650898523599802732790857831596547515523593979861803187084910989428312522918414417263055355460715745539358014631136245887418412633787074173796862711588221766398229333338511838891484974940633857861775630560092874987828057333663969469797013996401149696897591265769095952887917296740109742927689053276850469671231961384715398038978492733178835452859452433234470997285516534065058887757272972533841547437247509415567206632827453524027585684464869520087576386907357207827931645864812453790560013100879070175244115566800303394525802384116508985235998027327908578315965475155235939798618031870849109894283125229184144172630553554607112725169432413343763989564437170644270643461665184965150423819594083121075825", 0)
485 q := new(Int)
486 r := new(Int)
487
488 b.ResetTimer()
489 for i := 0; i < b.N; i++ {
490 q.QuoRem(y, x, r)
491 }
492}
493
Robert Griesemere3515332010-10-25 17:45:43 -0700494var bitLenTests = []struct {
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800495 in string
496 out int
Robert Griesemere3515332010-10-25 17:45:43 -0700497}{
Robert Griesemer34788912010-10-22 10:06:33 -0700498 {"-1", 1},
499 {"0", 0},
500 {"1", 1},
501 {"2", 2},
502 {"4", 3},
503 {"0xabc", 12},
504 {"0x8000", 16},
505 {"0x80000000", 32},
506 {"0x800000000000", 48},
507 {"0x8000000000000000", 64},
508 {"0x80000000000000000000", 80},
509 {"-0x4000000000000000000000", 87},
Adam Langley65063bc2009-11-05 15:55:41 -0800510}
511
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700512func TestBitLen(t *testing.T) {
513 for i, test := range bitLenTests {
514 x, ok := new(Int).SetString(test.in, 0)
Adam Langley65063bc2009-11-05 15:55:41 -0800515 if !ok {
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800516 t.Errorf("#%d test input invalid: %s", i, test.in)
517 continue
Adam Langley65063bc2009-11-05 15:55:41 -0800518 }
519
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700520 if n := x.BitLen(); n != test.out {
Rob Pike1959c3a2010-09-23 13:48:56 +1000521 t.Errorf("#%d got %d want %d", i, n, test.out)
Adam Langley65063bc2009-11-05 15:55:41 -0800522 }
523 }
524}
525
Robert Griesemere3515332010-10-25 17:45:43 -0700526var expTests = []struct {
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800527 x, y, m string
528 out string
Robert Griesemere3515332010-10-25 17:45:43 -0700529}{
Robert Griesemer26533862014-04-21 15:54:51 -0700530 // y <= 0
531 {"0", "0", "", "1"},
532 {"1", "0", "", "1"},
533 {"-10", "0", "", "1"},
534 {"1234", "-1", "", "1"},
535
536 // m == 1
537 {"0", "0", "1", "0"},
538 {"1", "0", "1", "0"},
539 {"-10", "0", "1", "0"},
540 {"1234", "-1", "1", "0"},
541
542 // misc
ALTreee21154f2015-04-06 21:18:37 +0200543 {"5", "1", "3", "2"},
Robert Griesemer75657262012-10-16 13:46:27 -0700544 {"5", "-7", "", "1"},
545 {"-5", "-7", "", "1"},
Robert Griesemer34788912010-10-22 10:06:33 -0700546 {"5", "0", "", "1"},
Robert Griesemer75657262012-10-16 13:46:27 -0700547 {"-5", "0", "", "1"},
Robert Griesemer34788912010-10-22 10:06:33 -0700548 {"5", "1", "", "5"},
549 {"-5", "1", "", "-5"},
Robert Griesemer28ddfb02014-10-02 13:02:25 -0700550 {"-5", "1", "7", "2"},
Robert Griesemer34788912010-10-22 10:06:33 -0700551 {"-2", "3", "2", "0"},
552 {"5", "2", "", "25"},
553 {"1", "65537", "2", "1"},
554 {"0x8000000000000000", "2", "", "0x40000000000000000000000000000000"},
555 {"0x8000000000000000", "2", "6719", "4944"},
556 {"0x8000000000000000", "3", "6719", "5447"},
557 {"0x8000000000000000", "1000", "6719", "1603"},
558 {"0x8000000000000000", "1000000", "6719", "3199"},
Robert Griesemer75657262012-10-16 13:46:27 -0700559 {"0x8000000000000000", "-1000000", "6719", "1"},
Russ Cox6bcec092015-12-09 11:53:04 -0500560
561 {"0xffffffffffffffffffffffffffffffff", "0x12345678123456781234567812345678123456789", "0x01112222333344445555666677778889", "0x36168FA1DB3AAE6C8CE647E137F97A"},
562
Robert Griesemer34788912010-10-22 10:06:33 -0700563 {
Adam Langley65063bc2009-11-05 15:55:41 -0800564 "2938462938472983472983659726349017249287491026512746239764525612965293865296239471239874193284792387498274256129746192347",
565 "298472983472983471903246121093472394872319615612417471234712061",
566 "29834729834729834729347290846729561262544958723956495615629569234729836259263598127342374289365912465901365498236492183464",
567 "23537740700184054162508175125554701713153216681790245129157191391322321508055833908509185839069455749219131480588829346291",
Adam Langley17021f42009-11-06 09:05:19 -0800568 },
Robert Griesemer28ddfb02014-10-02 13:02:25 -0700569 // test case for issue 8822
570 {
Russ Cox6bcec092015-12-09 11:53:04 -0500571 "11001289118363089646017359372117963499250546375269047542777928006103246876688756735760905680604646624353196869572752623285140408755420374049317646428185270079555372763503115646054602867593662923894140940837479507194934267532831694565516466765025434902348314525627418515646588160955862839022051353653052947073136084780742729727874803457643848197499548297570026926927502505634297079527299004267769780768565695459945235586892627059178884998772989397505061206395455591503771677500931269477503508150175717121828518985901959919560700853226255420793148986854391552859459511723547532575574664944815966793196961286234040892865",
572 "0xB08FFB20760FFED58FADA86DFEF71AD72AA0FA763219618FE022C197E54708BB1191C66470250FCE8879487507CEE41381CA4D932F81C2B3F1AB20B539D50DCD",
573 "0xAC6BDB41324A9A9BF166DE5E1389582FAF72B6651987EE07FC3192943DB56050A37329CBB4A099ED8193E0757767A13DD52312AB4B03310DCD7F48A9DA04FD50E8083969EDB767B0CF6095179A163AB3661A05FBD5FAAAE82918A9962F0B93B855F97993EC975EEAA80D740ADBF4FF747359D041D5C33EA71D281E446B14773BCA97B43A23FB801676BD207A436C6481F1D2B9078717461A5B9D32E688F87748544523B524B0D57D5EA77A2775D2ECFA032CFBDBF52FB3786160279004E57AE6AF874E7303CE53299CCC041C7BC308D82A5698F3A8D0C38271AE35F8E9DBFBB694B5C803D89F7AE435DE236D525F54759B65E372FCD68EF20FA7111F9E4AFF73",
574 "21484252197776302499639938883777710321993113097987201050501182909581359357618579566746556372589385361683610524730509041328855066514963385522570894839035884713051640171474186548713546686476761306436434146475140156284389181808675016576845833340494848283681088886584219750554408060556769486628029028720727393293111678826356480455433909233520504112074401376133077150471237549474149190242010469539006449596611576612573955754349042329130631128234637924786466585703488460540228477440853493392086251021228087076124706778899179648655221663765993962724699135217212118535057766739392069738618682722216712319320435674779146070442",
575 },
576 {
Robert Griesemer28ddfb02014-10-02 13:02:25 -0700577 "-0x1BCE04427D8032319A89E5C4136456671AC620883F2C4139E57F91307C485AD2D6204F4F87A58262652DB5DBBAC72B0613E51B835E7153BEC6068F5C8D696B74DBD18FEC316AEF73985CF0475663208EB46B4F17DD9DA55367B03323E5491A70997B90C059FB34809E6EE55BCFBD5F2F52233BFE62E6AA9E4E26A1D4C2439883D14F2633D55D8AA66A1ACD5595E778AC3A280517F1157989E70C1A437B849F1877B779CC3CDDEDE2DAA6594A6C66D181A00A5F777EE60596D8773998F6E988DEAE4CCA60E4DDCF9590543C89F74F603259FCAD71660D30294FBBE6490300F78A9D63FA660DC9417B8B9DDA28BEB3977B621B988E23D4D954F322C3540541BC649ABD504C50FADFD9F0987D58A2BF689313A285E773FF02899A6EF887D1D4A0D2",
578 "0xB08FFB20760FFED58FADA86DFEF71AD72AA0FA763219618FE022C197E54708BB1191C66470250FCE8879487507CEE41381CA4D932F81C2B3F1AB20B539D50DCD",
579 "0xAC6BDB41324A9A9BF166DE5E1389582FAF72B6651987EE07FC3192943DB56050A37329CBB4A099ED8193E0757767A13DD52312AB4B03310DCD7F48A9DA04FD50E8083969EDB767B0CF6095179A163AB3661A05FBD5FAAAE82918A9962F0B93B855F97993EC975EEAA80D740ADBF4FF747359D041D5C33EA71D281E446B14773BCA97B43A23FB801676BD207A436C6481F1D2B9078717461A5B9D32E688F87748544523B524B0D57D5EA77A2775D2ECFA032CFBDBF52FB3786160279004E57AE6AF874E7303CE53299CCC041C7BC308D82A5698F3A8D0C38271AE35F8E9DBFBB694B5C803D89F7AE435DE236D525F54759B65E372FCD68EF20FA7111F9E4AFF73",
580 "21484252197776302499639938883777710321993113097987201050501182909581359357618579566746556372589385361683610524730509041328855066514963385522570894839035884713051640171474186548713546686476761306436434146475140156284389181808675016576845833340494848283681088886584219750554408060556769486628029028720727393293111678826356480455433909233520504112074401376133077150471237549474149190242010469539006449596611576612573955754349042329130631128234637924786466585703488460540228477440853493392086251021228087076124706778899179648655221663765993962724699135217212118535057766739392069738618682722216712319320435674779146070442",
581 },
Russ Cox1e066ca2016-01-11 09:52:56 -0500582
583 // test cases for issue 13907
584 {"0xffffffff00000001", "0xffffffff00000001", "0xffffffff00000001", "0"},
585 {"0xffffffffffffffff00000001", "0xffffffffffffffff00000001", "0xffffffffffffffff00000001", "0"},
586 {"0xffffffffffffffffffffffff00000001", "0xffffffffffffffffffffffff00000001", "0xffffffffffffffffffffffff00000001", "0"},
587 {"0xffffffffffffffffffffffffffffffff00000001", "0xffffffffffffffffffffffffffffffff00000001", "0xffffffffffffffffffffffffffffffff00000001", "0"},
Russ Cox9927f252016-10-10 16:45:30 -0400588
589 {
590 "2",
591 "0xB08FFB20760FFED58FADA86DFEF71AD72AA0FA763219618FE022C197E54708BB1191C66470250FCE8879487507CEE41381CA4D932F81C2B3F1AB20B539D50DCD",
592 "0xAC6BDB41324A9A9BF166DE5E1389582FAF72B6651987EE07FC3192943DB56050A37329CBB4A099ED8193E0757767A13DD52312AB4B03310DCD7F48A9DA04FD50E8083969EDB767B0CF6095179A163AB3661A05FBD5FAAAE82918A9962F0B93B855F97993EC975EEAA80D740ADBF4FF747359D041D5C33EA71D281E446B14773BCA97B43A23FB801676BD207A436C6481F1D2B9078717461A5B9D32E688F87748544523B524B0D57D5EA77A2775D2ECFA032CFBDBF52FB3786160279004E57AE6AF874E7303CE53299CCC041C7BC308D82A5698F3A8D0C38271AE35F8E9DBFBB694B5C803D89F7AE435DE236D525F54759B65E372FCD68EF20FA7111F9E4AFF73", // odd
593 "0x6AADD3E3E424D5B713FCAA8D8945B1E055166132038C57BBD2D51C833F0C5EA2007A2324CE514F8E8C2F008A2F36F44005A4039CB55830986F734C93DAF0EB4BAB54A6A8C7081864F44346E9BC6F0A3EB9F2C0146A00C6A05187D0C101E1F2D038CDB70CB5E9E05A2D188AB6CBB46286624D4415E7D4DBFAD3BCC6009D915C406EED38F468B940F41E6BEDC0430DD78E6F19A7DA3A27498A4181E24D738B0072D8F6ADB8C9809A5B033A09785814FD9919F6EF9F83EEA519BEC593855C4C10CBEEC582D4AE0792158823B0275E6AEC35242740468FAF3D5C60FD1E376362B6322F78B7ED0CA1C5BBCD2B49734A56C0967A1D01A100932C837B91D592CE08ABFF",
594 },
595 {
596 "2",
597 "0xB08FFB20760FFED58FADA86DFEF71AD72AA0FA763219618FE022C197E54708BB1191C66470250FCE8879487507CEE41381CA4D932F81C2B3F1AB20B539D50DCD",
598 "0xAC6BDB41324A9A9BF166DE5E1389582FAF72B6651987EE07FC3192943DB56050A37329CBB4A099ED8193E0757767A13DD52312AB4B03310DCD7F48A9DA04FD50E8083969EDB767B0CF6095179A163AB3661A05FBD5FAAAE82918A9962F0B93B855F97993EC975EEAA80D740ADBF4FF747359D041D5C33EA71D281E446B14773BCA97B43A23FB801676BD207A436C6481F1D2B9078717461A5B9D32E688F87748544523B524B0D57D5EA77A2775D2ECFA032CFBDBF52FB3786160279004E57AE6AF874E7303CE53299CCC041C7BC308D82A5698F3A8D0C38271AE35F8E9DBFBB694B5C803D89F7AE435DE236D525F54759B65E372FCD68EF20FA7111F9E4AFF72", // even
599 "0x7858794B5897C29F4ED0B40913416AB6C48588484E6A45F2ED3E26C941D878E923575AAC434EE2750E6439A6976F9BB4D64CEDB2A53CE8D04DD48CADCDF8E46F22747C6B81C6CEA86C0D873FBF7CEF262BAAC43A522BD7F32F3CDAC52B9337C77B3DCFB3DB3EDD80476331E82F4B1DF8EFDC1220C92656DFC9197BDC1877804E28D928A2A284B8DED506CBA304435C9D0133C246C98A7D890D1DE60CBC53A024361DA83A9B8775019083D22AC6820ED7C3C68F8E801DD4EC779EE0A05C6EB682EF9840D285B838369BA7E148FA27691D524FAEAF7C6ECE2A4B99A294B9F2C241857B5B90CC8BFFCFCF18DFA7D676131D5CD3855A5A3E8EBFA0CDFADB4D198B4A",
600 },
Adam Langley65063bc2009-11-05 15:55:41 -0800601}
602
Adam Langley65063bc2009-11-05 15:55:41 -0800603func TestExp(t *testing.T) {
604 for i, test := range expTests {
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800605 x, ok1 := new(Int).SetString(test.x, 0)
606 y, ok2 := new(Int).SetString(test.y, 0)
607 out, ok3 := new(Int).SetString(test.out, 0)
Adam Langley65063bc2009-11-05 15:55:41 -0800608
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800609 var ok4 bool
610 var m *Int
Adam Langley65063bc2009-11-05 15:55:41 -0800611
612 if len(test.m) == 0 {
Robert Griesemer40621d52009-11-09 12:07:39 -0800613 m, ok4 = nil, true
Adam Langley65063bc2009-11-05 15:55:41 -0800614 } else {
Robert Griesemer40621d52009-11-09 12:07:39 -0800615 m, ok4 = new(Int).SetString(test.m, 0)
Adam Langley65063bc2009-11-05 15:55:41 -0800616 }
617
618 if !ok1 || !ok2 || !ok3 || !ok4 {
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700619 t.Errorf("#%d: error in input", i)
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800620 continue
Adam Langley65063bc2009-11-05 15:55:41 -0800621 }
622
Robert Griesemer75657262012-10-16 13:46:27 -0700623 z1 := new(Int).Exp(x, y, m)
624 if !isNormalized(z1) {
625 t.Errorf("#%d: %v is not normalized", i, *z1)
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700626 }
Robert Griesemer75657262012-10-16 13:46:27 -0700627 if z1.Cmp(out) != 0 {
Russ Cox1e066ca2016-01-11 09:52:56 -0500628 t.Errorf("#%d: got %x want %x", i, z1, out)
Robert Griesemer75657262012-10-16 13:46:27 -0700629 }
630
631 if m == nil {
Robert Griesemer28ddfb02014-10-02 13:02:25 -0700632 // The result should be the same as for m == 0;
633 // specifically, there should be no div-zero panic.
Robert Griesemer75657262012-10-16 13:46:27 -0700634 m = &Int{abs: nat{}} // m != nil && len(m.abs) == 0
635 z2 := new(Int).Exp(x, y, m)
636 if z2.Cmp(z1) != 0 {
Russ Cox1e066ca2016-01-11 09:52:56 -0500637 t.Errorf("#%d: got %x want %x", i, z2, z1)
Robert Griesemer75657262012-10-16 13:46:27 -0700638 }
Adam Langley65063bc2009-11-05 15:55:41 -0800639 }
640 }
641}
642
Russ Cox9927f252016-10-10 16:45:30 -0400643func BenchmarkExp(b *testing.B) {
644 x, _ := new(Int).SetString("11001289118363089646017359372117963499250546375269047542777928006103246876688756735760905680604646624353196869572752623285140408755420374049317646428185270079555372763503115646054602867593662923894140940837479507194934267532831694565516466765025434902348314525627418515646588160955862839022051353653052947073136084780742729727874803457643848197499548297570026926927502505634297079527299004267769780768565695459945235586892627059178884998772989397505061206395455591503771677500931269477503508150175717121828518985901959919560700853226255420793148986854391552859459511723547532575574664944815966793196961286234040892865", 0)
645 y, _ := new(Int).SetString("0xAC6BDB41324A9A9BF166DE5E1389582FAF72B6651987EE07FC3192943DB56050A37329CBB4A099ED8193E0757767A13DD52312AB4B03310DCD7F48A9DA04FD50E8083969EDB767B0CF6095179A163AB3661A05FBD5FAAAE82918A9962F0B93B855F97993EC975EEAA80D740ADBF4FF747359D041D5C33EA71D281E446B14773BCA97B43A23FB801676BD207A436C6481F1D2B9078717461A5B9D32E688F87748544523B524B0D57D5EA77A2775D2ECFA032CFBDBF52FB3786160279004E57AE6AF874E7303CE53299CCC041C7BC308D82A5698F3A8D0C38271AE35F8E9DBFBB694B5C803D89F7AE435DE236D525F54759B65E372FCD68EF20FA7111F9E4AFF72", 0)
646 n, _ := new(Int).SetString("0xAC6BDB41324A9A9BF166DE5E1389582FAF72B6651987EE07FC3192943DB56050A37329CBB4A099ED8193E0757767A13DD52312AB4B03310DCD7F48A9DA04FD50E8083969EDB767B0CF6095179A163AB3661A05FBD5FAAAE82918A9962F0B93B855F97993EC975EEAA80D740ADBF4FF747359D041D5C33EA71D281E446B14773BCA97B43A23FB801676BD207A436C6481F1D2B9078717461A5B9D32E688F87748544523B524B0D57D5EA77A2775D2ECFA032CFBDBF52FB3786160279004E57AE6AF874E7303CE53299CCC041C7BC308D82A5698F3A8D0C38271AE35F8E9DBFBB694B5C803D89F7AE435DE236D525F54759B65E372FCD68EF20FA7111F9E4AFF73", 0)
647 out := new(Int)
648 for i := 0; i < b.N; i++ {
649 out.Exp(x, y, n)
650 }
651}
652
653func BenchmarkExp2(b *testing.B) {
654 x, _ := new(Int).SetString("2", 0)
655 y, _ := new(Int).SetString("0xAC6BDB41324A9A9BF166DE5E1389582FAF72B6651987EE07FC3192943DB56050A37329CBB4A099ED8193E0757767A13DD52312AB4B03310DCD7F48A9DA04FD50E8083969EDB767B0CF6095179A163AB3661A05FBD5FAAAE82918A9962F0B93B855F97993EC975EEAA80D740ADBF4FF747359D041D5C33EA71D281E446B14773BCA97B43A23FB801676BD207A436C6481F1D2B9078717461A5B9D32E688F87748544523B524B0D57D5EA77A2775D2ECFA032CFBDBF52FB3786160279004E57AE6AF874E7303CE53299CCC041C7BC308D82A5698F3A8D0C38271AE35F8E9DBFBB694B5C803D89F7AE435DE236D525F54759B65E372FCD68EF20FA7111F9E4AFF72", 0)
656 n, _ := new(Int).SetString("0xAC6BDB41324A9A9BF166DE5E1389582FAF72B6651987EE07FC3192943DB56050A37329CBB4A099ED8193E0757767A13DD52312AB4B03310DCD7F48A9DA04FD50E8083969EDB767B0CF6095179A163AB3661A05FBD5FAAAE82918A9962F0B93B855F97993EC975EEAA80D740ADBF4FF747359D041D5C33EA71D281E446B14773BCA97B43A23FB801676BD207A436C6481F1D2B9078717461A5B9D32E688F87748544523B524B0D57D5EA77A2775D2ECFA032CFBDBF52FB3786160279004E57AE6AF874E7303CE53299CCC041C7BC308D82A5698F3A8D0C38271AE35F8E9DBFBB694B5C803D89F7AE435DE236D525F54759B65E372FCD68EF20FA7111F9E4AFF73", 0)
657 out := new(Int)
658 for i := 0; i < b.N; i++ {
659 out.Exp(x, y, n)
660 }
661}
662
Adam Langley65063bc2009-11-05 15:55:41 -0800663func checkGcd(aBytes, bBytes []byte) bool {
Robert Griesemer10b88882012-06-13 13:54:36 -0700664 x := new(Int)
665 y := new(Int)
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800666 a := new(Int).SetBytes(aBytes)
667 b := new(Int).SetBytes(bBytes)
Adam Langley65063bc2009-11-05 15:55:41 -0800668
Robert Griesemer10b88882012-06-13 13:54:36 -0700669 d := new(Int).GCD(x, y, a, b)
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800670 x.Mul(x, a)
671 y.Mul(y, b)
672 x.Add(x, y)
Adam Langley65063bc2009-11-05 15:55:41 -0800673
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800674 return x.Cmp(d) == 0
Adam Langley65063bc2009-11-05 15:55:41 -0800675}
676
Robert Griesemere3515332010-10-25 17:45:43 -0700677var gcdTests = []struct {
Robert Griesemer10b88882012-06-13 13:54:36 -0700678 d, x, y, a, b string
Robert Griesemere3515332010-10-25 17:45:43 -0700679}{
Robert Griesemer10b88882012-06-13 13:54:36 -0700680 // a <= 0 || b <= 0
681 {"0", "0", "0", "0", "0"},
682 {"0", "0", "0", "0", "7"},
683 {"0", "0", "0", "11", "0"},
684 {"0", "0", "0", "-77", "35"},
685 {"0", "0", "0", "64515", "-24310"},
686 {"0", "0", "0", "-64515", "-24310"},
687
688 {"1", "-9", "47", "120", "23"},
689 {"7", "1", "-2", "77", "35"},
690 {"935", "-3", "8", "64515", "24310"},
691 {"935000000000000000", "-3", "8", "64515000000000000000", "24310000000000000000"},
692 {"1", "-221", "22059940471369027483332068679400581064239780177629666810348940098015901108344", "98920366548084643601728869055592650835572950932266967461790948584315647051443", "991"},
693
694 // test early exit (after one Euclidean iteration) in binaryGCD
695 {"1", "", "", "1", "98920366548084643601728869055592650835572950932266967461790948584315647051443"},
696}
697
698func testGcd(t *testing.T, d, x, y, a, b *Int) {
699 var X *Int
700 if x != nil {
701 X = new(Int)
702 }
703 var Y *Int
704 if y != nil {
705 Y = new(Int)
706 }
707
708 D := new(Int).GCD(X, Y, a, b)
709 if D.Cmp(d) != 0 {
710 t.Errorf("GCD(%s, %s): got d = %s, want %s", a, b, D, d)
711 }
712 if x != nil && X.Cmp(x) != 0 {
713 t.Errorf("GCD(%s, %s): got x = %s, want %s", a, b, X, x)
714 }
715 if y != nil && Y.Cmp(y) != 0 {
716 t.Errorf("GCD(%s, %s): got y = %s, want %s", a, b, Y, y)
717 }
718
719 // binaryGCD requires a > 0 && b > 0
720 if a.Sign() <= 0 || b.Sign() <= 0 {
721 return
722 }
723
724 D.binaryGCD(a, b)
725 if D.Cmp(d) != 0 {
726 t.Errorf("binaryGcd(%s, %s): got d = %s, want %s", a, b, D, d)
727 }
Robert Griesemer1eb8c4a2015-06-19 12:50:38 -0700728
729 // check results in presence of aliasing (issue #11284)
730 a2 := new(Int).Set(a)
731 b2 := new(Int).Set(b)
732 a2.binaryGCD(a2, b2) // result is same as 1st argument
733 if a2.Cmp(d) != 0 {
734 t.Errorf("binaryGcd(%s, %s): got d = %s, want %s", a, b, a2, d)
735 }
736
737 a2 = new(Int).Set(a)
738 b2 = new(Int).Set(b)
739 b2.binaryGCD(a2, b2) // result is same as 2nd argument
740 if b2.Cmp(d) != 0 {
741 t.Errorf("binaryGcd(%s, %s): got d = %s, want %s", a, b, b2, d)
742 }
Adam Langley65063bc2009-11-05 15:55:41 -0800743}
744
Adam Langley65063bc2009-11-05 15:55:41 -0800745func TestGcd(t *testing.T) {
Robert Griesemer10b88882012-06-13 13:54:36 -0700746 for _, test := range gcdTests {
747 d, _ := new(Int).SetString(test.d, 0)
748 x, _ := new(Int).SetString(test.x, 0)
749 y, _ := new(Int).SetString(test.y, 0)
750 a, _ := new(Int).SetString(test.a, 0)
751 b, _ := new(Int).SetString(test.b, 0)
Adam Langley65063bc2009-11-05 15:55:41 -0800752
Robert Griesemer10b88882012-06-13 13:54:36 -0700753 testGcd(t, d, nil, nil, a, b)
754 testGcd(t, d, x, nil, a, b)
755 testGcd(t, d, nil, y, a, b)
756 testGcd(t, d, x, y, a, b)
Adam Langley65063bc2009-11-05 15:55:41 -0800757 }
758
Damian Gryski2fd01642015-10-03 12:06:32 +0200759 if err := quick.Check(checkGcd, nil); err != nil {
760 t.Error(err)
761 }
Adam Langley65063bc2009-11-05 15:55:41 -0800762}
Adam Langley19418552009-11-11 13:21:37 -0800763
Evan Shaw76cbbc82010-04-20 20:39:36 -0700764type intShiftTest struct {
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800765 in string
Evan Shaw76cbbc82010-04-20 20:39:36 -0700766 shift uint
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800767 out string
Adam Langley19418552009-11-11 13:21:37 -0800768}
769
Evan Shaw76cbbc82010-04-20 20:39:36 -0700770var rshTests = []intShiftTest{
Robert Griesemer34788912010-10-22 10:06:33 -0700771 {"0", 0, "0"},
772 {"-0", 0, "0"},
773 {"0", 1, "0"},
774 {"0", 2, "0"},
775 {"1", 0, "1"},
776 {"1", 1, "0"},
777 {"1", 2, "0"},
778 {"2", 0, "2"},
779 {"2", 1, "1"},
780 {"-1", 0, "-1"},
781 {"-1", 1, "-1"},
782 {"-1", 10, "-1"},
783 {"-100", 2, "-25"},
784 {"-100", 3, "-13"},
785 {"-100", 100, "-1"},
786 {"4294967296", 0, "4294967296"},
787 {"4294967296", 1, "2147483648"},
788 {"4294967296", 2, "1073741824"},
789 {"18446744073709551616", 0, "18446744073709551616"},
790 {"18446744073709551616", 1, "9223372036854775808"},
791 {"18446744073709551616", 2, "4611686018427387904"},
792 {"18446744073709551616", 64, "1"},
793 {"340282366920938463463374607431768211456", 64, "18446744073709551616"},
794 {"340282366920938463463374607431768211456", 128, "1"},
Adam Langley19418552009-11-11 13:21:37 -0800795}
796
Adam Langley19418552009-11-11 13:21:37 -0800797func TestRsh(t *testing.T) {
798 for i, test := range rshTests {
Robert Griesemer5a1d3322009-12-15 15:33:31 -0800799 in, _ := new(Int).SetString(test.in, 10)
800 expected, _ := new(Int).SetString(test.out, 10)
801 out := new(Int).Rsh(in, test.shift)
Adam Langley19418552009-11-11 13:21:37 -0800802
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700803 if !isNormalized(out) {
804 t.Errorf("#%d: %v is not normalized", i, *out)
805 }
Adam Langley19418552009-11-11 13:21:37 -0800806 if out.Cmp(expected) != 0 {
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700807 t.Errorf("#%d: got %s want %s", i, out, expected)
Adam Langley19418552009-11-11 13:21:37 -0800808 }
809 }
810}
Evan Shaw76cbbc82010-04-20 20:39:36 -0700811
Evan Shaw76cbbc82010-04-20 20:39:36 -0700812func TestRshSelf(t *testing.T) {
813 for i, test := range rshTests {
814 z, _ := new(Int).SetString(test.in, 10)
815 expected, _ := new(Int).SetString(test.out, 10)
816 z.Rsh(z, test.shift)
817
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700818 if !isNormalized(z) {
819 t.Errorf("#%d: %v is not normalized", i, *z)
820 }
Evan Shaw76cbbc82010-04-20 20:39:36 -0700821 if z.Cmp(expected) != 0 {
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700822 t.Errorf("#%d: got %s want %s", i, z, expected)
Evan Shaw76cbbc82010-04-20 20:39:36 -0700823 }
824 }
825}
826
Evan Shaw76cbbc82010-04-20 20:39:36 -0700827var lshTests = []intShiftTest{
Robert Griesemer34788912010-10-22 10:06:33 -0700828 {"0", 0, "0"},
829 {"0", 1, "0"},
830 {"0", 2, "0"},
831 {"1", 0, "1"},
832 {"1", 1, "2"},
833 {"1", 2, "4"},
834 {"2", 0, "2"},
835 {"2", 1, "4"},
836 {"2", 2, "8"},
837 {"-87", 1, "-174"},
838 {"4294967296", 0, "4294967296"},
839 {"4294967296", 1, "8589934592"},
840 {"4294967296", 2, "17179869184"},
841 {"18446744073709551616", 0, "18446744073709551616"},
842 {"9223372036854775808", 1, "18446744073709551616"},
843 {"4611686018427387904", 2, "18446744073709551616"},
844 {"1", 64, "18446744073709551616"},
845 {"18446744073709551616", 64, "340282366920938463463374607431768211456"},
846 {"1", 128, "340282366920938463463374607431768211456"},
Evan Shaw76cbbc82010-04-20 20:39:36 -0700847}
848
Evan Shaw76cbbc82010-04-20 20:39:36 -0700849func TestLsh(t *testing.T) {
850 for i, test := range lshTests {
851 in, _ := new(Int).SetString(test.in, 10)
852 expected, _ := new(Int).SetString(test.out, 10)
853 out := new(Int).Lsh(in, test.shift)
854
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700855 if !isNormalized(out) {
856 t.Errorf("#%d: %v is not normalized", i, *out)
857 }
Evan Shaw76cbbc82010-04-20 20:39:36 -0700858 if out.Cmp(expected) != 0 {
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700859 t.Errorf("#%d: got %s want %s", i, out, expected)
Evan Shaw76cbbc82010-04-20 20:39:36 -0700860 }
861 }
862}
863
Evan Shaw76cbbc82010-04-20 20:39:36 -0700864func TestLshSelf(t *testing.T) {
865 for i, test := range lshTests {
866 z, _ := new(Int).SetString(test.in, 10)
867 expected, _ := new(Int).SetString(test.out, 10)
868 z.Lsh(z, test.shift)
869
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700870 if !isNormalized(z) {
871 t.Errorf("#%d: %v is not normalized", i, *z)
872 }
Evan Shaw76cbbc82010-04-20 20:39:36 -0700873 if z.Cmp(expected) != 0 {
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700874 t.Errorf("#%d: got %s want %s", i, z, expected)
Evan Shaw76cbbc82010-04-20 20:39:36 -0700875 }
876 }
877}
878
Evan Shaw76cbbc82010-04-20 20:39:36 -0700879func TestLshRsh(t *testing.T) {
880 for i, test := range rshTests {
881 in, _ := new(Int).SetString(test.in, 10)
882 out := new(Int).Lsh(in, test.shift)
883 out = out.Rsh(out, test.shift)
884
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700885 if !isNormalized(out) {
886 t.Errorf("#%d: %v is not normalized", i, *out)
887 }
Evan Shaw76cbbc82010-04-20 20:39:36 -0700888 if in.Cmp(out) != 0 {
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700889 t.Errorf("#%d: got %s want %s", i, out, in)
Evan Shaw76cbbc82010-04-20 20:39:36 -0700890 }
891 }
892 for i, test := range lshTests {
893 in, _ := new(Int).SetString(test.in, 10)
894 out := new(Int).Lsh(in, test.shift)
895 out.Rsh(out, test.shift)
896
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700897 if !isNormalized(out) {
898 t.Errorf("#%d: %v is not normalized", i, *out)
899 }
Evan Shaw76cbbc82010-04-20 20:39:36 -0700900 if in.Cmp(out) != 0 {
Robert Griesemerb9caa4a2010-05-03 18:48:05 -0700901 t.Errorf("#%d: got %s want %s", i, out, in)
Evan Shaw76cbbc82010-04-20 20:39:36 -0700902 }
903 }
904}
905
Evan Shaw76cbbc82010-04-20 20:39:36 -0700906var int64Tests = []int64{
907 0,
908 1,
909 -1,
910 4294967295,
911 -4294967295,
912 4294967296,
913 -4294967296,
914 9223372036854775807,
915 -9223372036854775807,
916 -9223372036854775808,
917}
918
919func TestInt64(t *testing.T) {
920 for i, testVal := range int64Tests {
921 in := NewInt(testVal)
922 out := in.Int64()
923
924 if out != testVal {
925 t.Errorf("#%d got %d want %d", i, out, testVal)
926 }
927 }
928}
Evan Shaw4d1b1572010-05-03 11:20:52 -0700929
Luit van Drongelenf4fc1632012-12-11 12:19:10 -0500930var uint64Tests = []uint64{
931 0,
932 1,
933 4294967295,
934 4294967296,
935 8589934591,
936 8589934592,
937 9223372036854775807,
938 9223372036854775808,
939 18446744073709551615, // 1<<64 - 1
940}
941
942func TestUint64(t *testing.T) {
943 in := new(Int)
944 for i, testVal := range uint64Tests {
945 in.SetUint64(testVal)
946 out := in.Uint64()
947
948 if out != testVal {
949 t.Errorf("#%d got %d want %d", i, out, testVal)
950 }
951
952 str := fmt.Sprint(testVal)
953 strOut := in.String()
954 if strOut != str {
955 t.Errorf("#%d.String got %s want %s", i, strOut, str)
956 }
957 }
958}
959
Robert Griesemere3515332010-10-25 17:45:43 -0700960var bitwiseTests = []struct {
Evan Shaw4d1b1572010-05-03 11:20:52 -0700961 x, y string
962 and, or, xor, andNot string
Robert Griesemere3515332010-10-25 17:45:43 -0700963}{
Robert Griesemer34788912010-10-22 10:06:33 -0700964 {"0x00", "0x00", "0x00", "0x00", "0x00", "0x00"},
965 {"0x00", "0x01", "0x00", "0x01", "0x01", "0x00"},
966 {"0x01", "0x00", "0x00", "0x01", "0x01", "0x01"},
967 {"-0x01", "0x00", "0x00", "-0x01", "-0x01", "-0x01"},
968 {"-0xaf", "-0x50", "-0xf0", "-0x0f", "0xe1", "0x41"},
969 {"0x00", "-0x01", "0x00", "-0x01", "-0x01", "0x00"},
970 {"0x01", "0x01", "0x01", "0x01", "0x00", "0x00"},
971 {"-0x01", "-0x01", "-0x01", "-0x01", "0x00", "0x00"},
972 {"0x07", "0x08", "0x00", "0x0f", "0x0f", "0x07"},
973 {"0x05", "0x0f", "0x05", "0x0f", "0x0a", "0x00"},
Keith Randallc6ddca22015-01-15 20:45:07 -0800974 {"0xff", "-0x0a", "0xf6", "-0x01", "-0xf7", "0x09"},
Robert Griesemer34788912010-10-22 10:06:33 -0700975 {"0x013ff6", "0x9a4e", "0x1a46", "0x01bffe", "0x01a5b8", "0x0125b0"},
976 {"-0x013ff6", "0x9a4e", "0x800a", "-0x0125b2", "-0x01a5bc", "-0x01c000"},
977 {"-0x013ff6", "-0x9a4e", "-0x01bffe", "-0x1a46", "0x01a5b8", "0x8008"},
978 {
Evan Shaw4d1b1572010-05-03 11:20:52 -0700979 "0x1000009dc6e3d9822cba04129bcbe3401",
980 "0xb9bd7d543685789d57cb918e833af352559021483cdb05cc21fd",
981 "0x1000001186210100001000009048c2001",
982 "0xb9bd7d543685789d57cb918e8bfeff7fddb2ebe87dfbbdfe35fd",
983 "0xb9bd7d543685789d57ca918e8ae69d6fcdb2eae87df2b97215fc",
984 "0x8c40c2d8822caa04120b8321400",
985 },
Robert Griesemer34788912010-10-22 10:06:33 -0700986 {
Evan Shaw4d1b1572010-05-03 11:20:52 -0700987 "0x1000009dc6e3d9822cba04129bcbe3401",
988 "-0xb9bd7d543685789d57cb918e833af352559021483cdb05cc21fd",
989 "0x8c40c2d8822caa04120b8321401",
990 "-0xb9bd7d543685789d57ca918e82229142459020483cd2014001fd",
991 "-0xb9bd7d543685789d57ca918e8ae69d6fcdb2eae87df2b97215fe",
992 "0x1000001186210100001000009048c2000",
993 },
Robert Griesemer34788912010-10-22 10:06:33 -0700994 {
Evan Shaw4d1b1572010-05-03 11:20:52 -0700995 "-0x1000009dc6e3d9822cba04129bcbe3401",
996 "-0xb9bd7d543685789d57cb918e833af352559021483cdb05cc21fd",
997 "-0xb9bd7d543685789d57cb918e8bfeff7fddb2ebe87dfbbdfe35fd",
998 "-0x1000001186210100001000009048c2001",
999 "0xb9bd7d543685789d57ca918e8ae69d6fcdb2eae87df2b97215fc",
1000 "0xb9bd7d543685789d57ca918e82229142459020483cd2014001fc",
1001 },
1002}
1003
Evan Shaw4d1b1572010-05-03 11:20:52 -07001004type bitFun func(z, x, y *Int) *Int
1005
1006func testBitFun(t *testing.T, msg string, f bitFun, x, y *Int, exp string) {
1007 expected := new(Int)
Evan Shaw28a09712010-08-09 10:21:54 -07001008 expected.SetString(exp, 0)
Evan Shaw4d1b1572010-05-03 11:20:52 -07001009
1010 out := f(new(Int), x, y)
1011 if out.Cmp(expected) != 0 {
Evan Shaw4d1b1572010-05-03 11:20:52 -07001012 t.Errorf("%s: got %s want %s", msg, out, expected)
1013 }
1014}
1015
Evan Shaw4d1b1572010-05-03 11:20:52 -07001016func testBitFunSelf(t *testing.T, msg string, f bitFun, x, y *Int, exp string) {
Evan Shaw28a09712010-08-09 10:21:54 -07001017 self := new(Int)
1018 self.Set(x)
Evan Shaw4d1b1572010-05-03 11:20:52 -07001019 expected := new(Int)
Evan Shaw28a09712010-08-09 10:21:54 -07001020 expected.SetString(exp, 0)
Evan Shaw4d1b1572010-05-03 11:20:52 -07001021
Evan Shaw28a09712010-08-09 10:21:54 -07001022 self = f(self, self, y)
1023 if self.Cmp(expected) != 0 {
1024 t.Errorf("%s: got %s want %s", msg, self, expected)
Evan Shaw4d1b1572010-05-03 11:20:52 -07001025 }
1026}
1027
Roger Peppe83fd82b2011-05-17 13:38:21 -07001028func altBit(x *Int, i int) uint {
1029 z := new(Int).Rsh(x, uint(i))
1030 z = z.And(z, NewInt(1))
1031 if z.Cmp(new(Int)) != 0 {
1032 return 1
1033 }
1034 return 0
1035}
1036
1037func altSetBit(z *Int, x *Int, i int, b uint) *Int {
1038 one := NewInt(1)
1039 m := one.Lsh(one, uint(i))
1040 switch b {
1041 case 1:
1042 return z.Or(x, m)
1043 case 0:
1044 return z.AndNot(x, m)
1045 }
1046 panic("set bit is not 0 or 1")
1047}
1048
1049func testBitset(t *testing.T, x *Int) {
1050 n := x.BitLen()
1051 z := new(Int).Set(x)
1052 z1 := new(Int).Set(x)
1053 for i := 0; i < n+10; i++ {
1054 old := z.Bit(i)
1055 old1 := altBit(z1, i)
1056 if old != old1 {
1057 t.Errorf("bitset: inconsistent value for Bit(%s, %d), got %v want %v", z1, i, old, old1)
1058 }
1059 z := new(Int).SetBit(z, i, 1)
1060 z1 := altSetBit(new(Int), z1, i, 1)
1061 if z.Bit(i) == 0 {
1062 t.Errorf("bitset: bit %d of %s got 0 want 1", i, x)
1063 }
1064 if z.Cmp(z1) != 0 {
1065 t.Errorf("bitset: inconsistent value after SetBit 1, got %s want %s", z, z1)
1066 }
1067 z.SetBit(z, i, 0)
1068 altSetBit(z1, z1, i, 0)
1069 if z.Bit(i) != 0 {
1070 t.Errorf("bitset: bit %d of %s got 1 want 0", i, x)
1071 }
1072 if z.Cmp(z1) != 0 {
1073 t.Errorf("bitset: inconsistent value after SetBit 0, got %s want %s", z, z1)
1074 }
1075 altSetBit(z1, z1, i, old)
1076 z.SetBit(z, i, old)
1077 if z.Cmp(z1) != 0 {
1078 t.Errorf("bitset: inconsistent value after SetBit old, got %s want %s", z, z1)
1079 }
1080 }
1081 if z.Cmp(x) != 0 {
1082 t.Errorf("bitset: got %s want %s", z, x)
1083 }
1084}
1085
1086var bitsetTests = []struct {
1087 x string
1088 i int
1089 b uint
1090}{
1091 {"0", 0, 0},
1092 {"0", 200, 0},
1093 {"1", 0, 1},
1094 {"1", 1, 0},
1095 {"-1", 0, 1},
1096 {"-1", 200, 1},
1097 {"0x2000000000000000000000000000", 108, 0},
1098 {"0x2000000000000000000000000000", 109, 1},
1099 {"0x2000000000000000000000000000", 110, 0},
1100 {"-0x2000000000000000000000000001", 108, 1},
1101 {"-0x2000000000000000000000000001", 109, 0},
1102 {"-0x2000000000000000000000000001", 110, 1},
1103}
1104
1105func TestBitSet(t *testing.T) {
1106 for _, test := range bitwiseTests {
1107 x := new(Int)
1108 x.SetString(test.x, 0)
1109 testBitset(t, x)
1110 x = new(Int)
1111 x.SetString(test.y, 0)
1112 testBitset(t, x)
1113 }
1114 for i, test := range bitsetTests {
1115 x := new(Int)
1116 x.SetString(test.x, 0)
1117 b := x.Bit(test.i)
1118 if b != test.b {
Roger Peppeca6de002011-11-30 09:29:58 -08001119 t.Errorf("#%d got %v want %v", i, b, test.b)
Roger Peppe83fd82b2011-05-17 13:38:21 -07001120 }
1121 }
Roger Peppeca6de002011-11-30 09:29:58 -08001122 z := NewInt(1)
1123 z.SetBit(NewInt(0), 2, 1)
1124 if z.Cmp(NewInt(4)) != 0 {
1125 t.Errorf("destination leaked into result; got %s want 4", z)
1126 }
Roger Peppe83fd82b2011-05-17 13:38:21 -07001127}
1128
1129func BenchmarkBitset(b *testing.B) {
1130 z := new(Int)
1131 z.SetBit(z, 512, 1)
1132 b.ResetTimer()
1133 b.StartTimer()
1134 for i := b.N - 1; i >= 0; i-- {
1135 z.SetBit(z, i&512, 1)
1136 }
1137}
1138
1139func BenchmarkBitsetNeg(b *testing.B) {
1140 z := NewInt(-1)
1141 z.SetBit(z, 512, 0)
1142 b.ResetTimer()
1143 b.StartTimer()
1144 for i := b.N - 1; i >= 0; i-- {
1145 z.SetBit(z, i&512, 0)
1146 }
1147}
1148
1149func BenchmarkBitsetOrig(b *testing.B) {
1150 z := new(Int)
1151 altSetBit(z, z, 512, 1)
1152 b.ResetTimer()
1153 b.StartTimer()
1154 for i := b.N - 1; i >= 0; i-- {
1155 altSetBit(z, z, i&512, 1)
1156 }
1157}
1158
1159func BenchmarkBitsetNegOrig(b *testing.B) {
1160 z := NewInt(-1)
1161 altSetBit(z, z, 512, 0)
1162 b.ResetTimer()
1163 b.StartTimer()
1164 for i := b.N - 1; i >= 0; i-- {
1165 altSetBit(z, z, i&512, 0)
1166 }
1167}
Evan Shaw4d1b1572010-05-03 11:20:52 -07001168
David Leon Gilea0491b2015-06-26 10:29:45 -07001169// tri generates the trinomial 2**(n*2) - 2**n - 1, which is always 3 mod 4 and
1170// 7 mod 8, so that 2 is always a quadratic residue.
1171func tri(n uint) *Int {
1172 x := NewInt(1)
1173 x.Lsh(x, n)
1174 x2 := new(Int).Lsh(x, n)
1175 x2.Sub(x2, x)
1176 x2.Sub(x2, intOne)
1177 return x2
1178}
1179
1180func BenchmarkModSqrt225_Tonelli(b *testing.B) {
1181 p := tri(225)
1182 x := NewInt(2)
1183 for i := 0; i < b.N; i++ {
1184 x.SetUint64(2)
1185 x.modSqrtTonelliShanks(x, p)
1186 }
1187}
1188
1189func BenchmarkModSqrt224_3Mod4(b *testing.B) {
1190 p := tri(225)
1191 x := new(Int).SetUint64(2)
1192 for i := 0; i < b.N; i++ {
1193 x.SetUint64(2)
1194 x.modSqrt3Mod4Prime(x, p)
1195 }
1196}
1197
1198func BenchmarkModSqrt5430_Tonelli(b *testing.B) {
Brad Fitzpatrick6f135bf2016-09-14 18:44:59 +00001199 if isRaceBuilder {
1200 b.Skip("skipping on race builder")
1201 }
David Leon Gilea0491b2015-06-26 10:29:45 -07001202 p := tri(5430)
1203 x := new(Int).SetUint64(2)
1204 for i := 0; i < b.N; i++ {
1205 x.SetUint64(2)
1206 x.modSqrtTonelliShanks(x, p)
1207 }
1208}
1209
1210func BenchmarkModSqrt5430_3Mod4(b *testing.B) {
Brad Fitzpatrick6f135bf2016-09-14 18:44:59 +00001211 if isRaceBuilder {
1212 b.Skip("skipping on race builder")
1213 }
David Leon Gilea0491b2015-06-26 10:29:45 -07001214 p := tri(5430)
1215 x := new(Int).SetUint64(2)
1216 for i := 0; i < b.N; i++ {
1217 x.SetUint64(2)
1218 x.modSqrt3Mod4Prime(x, p)
1219 }
1220}
1221
Evan Shaw4d1b1572010-05-03 11:20:52 -07001222func TestBitwise(t *testing.T) {
1223 x := new(Int)
1224 y := new(Int)
1225 for _, test := range bitwiseTests {
Evan Shaw28a09712010-08-09 10:21:54 -07001226 x.SetString(test.x, 0)
1227 y.SetString(test.y, 0)
Evan Shaw4d1b1572010-05-03 11:20:52 -07001228
1229 testBitFun(t, "and", (*Int).And, x, y, test.and)
1230 testBitFunSelf(t, "and", (*Int).And, x, y, test.and)
1231 testBitFun(t, "andNot", (*Int).AndNot, x, y, test.andNot)
1232 testBitFunSelf(t, "andNot", (*Int).AndNot, x, y, test.andNot)
1233 testBitFun(t, "or", (*Int).Or, x, y, test.or)
1234 testBitFunSelf(t, "or", (*Int).Or, x, y, test.or)
1235 testBitFun(t, "xor", (*Int).Xor, x, y, test.xor)
1236 testBitFunSelf(t, "xor", (*Int).Xor, x, y, test.xor)
1237 }
1238}
1239
Robert Griesemere3515332010-10-25 17:45:43 -07001240var notTests = []struct {
Evan Shaw4d1b1572010-05-03 11:20:52 -07001241 in string
1242 out string
Robert Griesemere3515332010-10-25 17:45:43 -07001243}{
Robert Griesemer34788912010-10-22 10:06:33 -07001244 {"0", "-1"},
1245 {"1", "-2"},
1246 {"7", "-8"},
1247 {"0", "-1"},
1248 {"-81910", "81909"},
1249 {
Evan Shaw4d1b1572010-05-03 11:20:52 -07001250 "298472983472983471903246121093472394872319615612417471234712061",
1251 "-298472983472983471903246121093472394872319615612417471234712062",
1252 },
1253}
1254
1255func TestNot(t *testing.T) {
1256 in := new(Int)
1257 out := new(Int)
1258 expected := new(Int)
1259 for i, test := range notTests {
1260 in.SetString(test.in, 10)
1261 expected.SetString(test.out, 10)
1262 out = out.Not(in)
1263 if out.Cmp(expected) != 0 {
1264 t.Errorf("#%d: got %s want %s", i, out, expected)
1265 }
1266 out = out.Not(out)
1267 if out.Cmp(in) != 0 {
1268 t.Errorf("#%d: got %s want %s", i, out, in)
1269 }
1270 }
1271}
Adam Langleyf199f292010-05-26 15:58:58 -04001272
Robert Griesemere3515332010-10-25 17:45:43 -07001273var modInverseTests = []struct {
Adam Langleyf199f292010-05-26 15:58:58 -04001274 element string
Keith Randall96d1e4a2014-10-14 14:09:56 -07001275 modulus string
Robert Griesemere3515332010-10-25 17:45:43 -07001276}{
Keith Randall96d1e4a2014-10-14 14:09:56 -07001277 {"1234567", "458948883992"},
Robert Griesemer34788912010-10-22 10:06:33 -07001278 {"239487239847", "2410312426921032588552076022197566074856950548502459942654116941958108831682612228890093858261341614673227141477904012196503648957050582631942730706805009223062734745341073406696246014589361659774041027169249453200378729434170325843778659198143763193776859869524088940195577346119843545301547043747207749969763750084308926339295559968882457872412993810129130294592999947926365264059284647209730384947211681434464714438488520940127459844288859336526896320919633919"},
Michal Bohuslávek9ed07152016-09-20 22:56:57 +01001279 {"-10", "13"}, // issue #16984
Adam Langleyf199f292010-05-26 15:58:58 -04001280}
1281
1282func TestModInverse(t *testing.T) {
Keith Randall96d1e4a2014-10-14 14:09:56 -07001283 var element, modulus, gcd, inverse Int
Adam Langleyf199f292010-05-26 15:58:58 -04001284 one := NewInt(1)
1285 for i, test := range modInverseTests {
1286 (&element).SetString(test.element, 10)
Keith Randall96d1e4a2014-10-14 14:09:56 -07001287 (&modulus).SetString(test.modulus, 10)
1288 (&inverse).ModInverse(&element, &modulus)
1289 (&inverse).Mul(&inverse, &element)
1290 (&inverse).Mod(&inverse, &modulus)
1291 if (&inverse).Cmp(one) != 0 {
1292 t.Errorf("#%d: failed (e·e^(-1)=%s)", i, &inverse)
1293 }
1294 }
1295 // exhaustive test for small values
1296 for n := 2; n < 100; n++ {
1297 (&modulus).SetInt64(int64(n))
1298 for x := 1; x < n; x++ {
1299 (&element).SetInt64(int64(x))
1300 (&gcd).GCD(nil, nil, &element, &modulus)
1301 if (&gcd).Cmp(one) != 0 {
1302 continue
1303 }
1304 (&inverse).ModInverse(&element, &modulus)
1305 (&inverse).Mul(&inverse, &element)
1306 (&inverse).Mod(&inverse, &modulus)
1307 if (&inverse).Cmp(one) != 0 {
1308 t.Errorf("ModInverse(%d,%d)*%d%%%d=%d, not 1", &element, &modulus, &element, &modulus, &inverse)
1309 }
Adam Langleyf199f292010-05-26 15:58:58 -04001310 }
1311 }
1312}
Robert Griesemer758d0552011-03-08 17:27:44 -08001313
Bryan Fordac615882014-12-19 14:28:44 -05001314// testModSqrt is a helper for TestModSqrt,
1315// which checks that ModSqrt can compute a square-root of elt^2.
1316func testModSqrt(t *testing.T, elt, mod, sq, sqrt *Int) bool {
1317 var sqChk, sqrtChk, sqrtsq Int
1318 sq.Mul(elt, elt)
1319 sq.Mod(sq, mod)
1320 z := sqrt.ModSqrt(sq, mod)
1321 if z != sqrt {
1322 t.Errorf("ModSqrt returned wrong value %s", z)
1323 }
1324
1325 // test ModSqrt arguments outside the range [0,mod)
1326 sqChk.Add(sq, mod)
1327 z = sqrtChk.ModSqrt(&sqChk, mod)
1328 if z != &sqrtChk || z.Cmp(sqrt) != 0 {
1329 t.Errorf("ModSqrt returned inconsistent value %s", z)
1330 }
1331 sqChk.Sub(sq, mod)
1332 z = sqrtChk.ModSqrt(&sqChk, mod)
1333 if z != &sqrtChk || z.Cmp(sqrt) != 0 {
1334 t.Errorf("ModSqrt returned inconsistent value %s", z)
1335 }
1336
1337 // make sure we actually got a square root
1338 if sqrt.Cmp(elt) == 0 {
1339 return true // we found the "desired" square root
1340 }
1341 sqrtsq.Mul(sqrt, sqrt) // make sure we found the "other" one
1342 sqrtsq.Mod(&sqrtsq, mod)
1343 return sq.Cmp(&sqrtsq) == 0
1344}
1345
1346func TestModSqrt(t *testing.T) {
1347 var elt, mod, modx4, sq, sqrt Int
1348 r := rand.New(rand.NewSource(9))
1349 for i, s := range primes[1:] { // skip 2, use only odd primes
1350 mod.SetString(s, 10)
1351 modx4.Lsh(&mod, 2)
1352
1353 // test a few random elements per prime
1354 for x := 1; x < 5; x++ {
1355 elt.Rand(r, &modx4)
1356 elt.Sub(&elt, &mod) // test range [-mod, 3*mod)
1357 if !testModSqrt(t, &elt, &mod, &sq, &sqrt) {
1358 t.Errorf("#%d: failed (sqrt(e) = %s)", i, &sqrt)
1359 }
1360 }
Russ Cox04d732b2015-12-21 13:50:06 -05001361
1362 if testing.Short() && i > 2 {
1363 break
1364 }
1365 }
1366
1367 if testing.Short() {
1368 return
Bryan Fordac615882014-12-19 14:28:44 -05001369 }
1370
1371 // exhaustive test for small values
1372 for n := 3; n < 100; n++ {
1373 mod.SetInt64(int64(n))
1374 if !mod.ProbablyPrime(10) {
1375 continue
1376 }
1377 isSquare := make([]bool, n)
1378
1379 // test all the squares
1380 for x := 1; x < n; x++ {
1381 elt.SetInt64(int64(x))
1382 if !testModSqrt(t, &elt, &mod, &sq, &sqrt) {
1383 t.Errorf("#%d: failed (sqrt(%d,%d) = %s)", x, &elt, &mod, &sqrt)
1384 }
1385 isSquare[sq.Uint64()] = true
1386 }
1387
1388 // test all non-squares
1389 for x := 1; x < n; x++ {
1390 sq.SetInt64(int64(x))
1391 z := sqrt.ModSqrt(&sq, &mod)
1392 if !isSquare[x] && z != nil {
1393 t.Errorf("#%d: failed (sqrt(%d,%d) = nil)", x, &sqrt, &mod)
1394 }
1395 }
1396 }
1397}
1398
1399func TestJacobi(t *testing.T) {
1400 testCases := []struct {
1401 x, y int64
1402 result int
1403 }{
1404 {0, 1, 1},
1405 {0, -1, 1},
1406 {1, 1, 1},
1407 {1, -1, 1},
1408 {0, 5, 0},
1409 {1, 5, 1},
1410 {2, 5, -1},
1411 {-2, 5, -1},
1412 {2, -5, -1},
1413 {-2, -5, 1},
1414 {3, 5, -1},
1415 {5, 5, 0},
1416 {-5, 5, 0},
1417 {6, 5, 1},
1418 {6, -5, 1},
1419 {-6, 5, 1},
1420 {-6, -5, -1},
1421 }
1422
1423 var x, y Int
1424
1425 for i, test := range testCases {
1426 x.SetInt64(test.x)
1427 y.SetInt64(test.y)
1428 expected := test.result
1429 actual := Jacobi(&x, &y)
1430 if actual != expected {
1431 t.Errorf("#%d: Jacobi(%d, %d) = %d, but expected %d", i, test.x, test.y, actual, expected)
1432 }
1433 }
1434}
1435
1436func TestJacobiPanic(t *testing.T) {
1437 const failureMsg = "test failure"
1438 defer func() {
1439 msg := recover()
1440 if msg == nil || msg == failureMsg {
1441 panic(msg)
1442 }
1443 t.Log(msg)
1444 }()
1445 x := NewInt(1)
1446 y := NewInt(2)
1447 // Jacobi should panic when the second argument is even.
1448 Jacobi(x, y)
1449 panic(failureMsg)
1450}
1451
Robert Griesemerfc78c5a2011-12-22 14:15:41 -08001452func TestIssue2607(t *testing.T) {
1453 // This code sequence used to hang.
1454 n := NewInt(10)
1455 n.Rand(rand.New(rand.NewSource(9)), n)
1456}
Russ Cox9ee21f92016-10-10 16:18:43 -04001457
1458func TestSqrt(t *testing.T) {
1459 root := 0
1460 r := new(Int)
1461 for i := 0; i < 10000; i++ {
1462 if (root+1)*(root+1) <= i {
1463 root++
1464 }
1465 n := NewInt(int64(i))
1466 r.SetInt64(-2)
1467 r.Sqrt(n)
1468 if r.Cmp(NewInt(int64(root))) != 0 {
1469 t.Errorf("Sqrt(%v) = %v, want %v", n, r, root)
1470 }
1471 }
1472
1473 for i := 0; i < 1000; i += 10 {
1474 n, _ := new(Int).SetString("1"+strings.Repeat("0", i), 10)
1475 r := new(Int).Sqrt(n)
1476 root, _ := new(Int).SetString("1"+strings.Repeat("0", i/2), 10)
1477 if r.Cmp(root) != 0 {
1478 t.Errorf("Sqrt(1e%d) = %v, want 1e%d", i, r, i/2)
1479 }
1480 }
1481
1482 // Test aliasing.
1483 r.SetInt64(100)
1484 r.Sqrt(r)
1485 if r.Int64() != 10 {
1486 t.Errorf("Sqrt(100) = %v, want 10 (aliased output)", r.Int64())
1487 }
1488}
1489
1490func BenchmarkSqrt(b *testing.B) {
1491 n, _ := new(Int).SetString("1"+strings.Repeat("0", 1001), 10)
1492 b.ResetTimer()
1493 t := new(Int)
1494 for i := 0; i < b.N; i++ {
1495 t.Sqrt(n)
1496 }
1497}