github.com/shijuvar/go@v0.0.0-20141209052335-e8f13700b70c/src/math/big/nat_test.go (about) 1 // 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 5 package big 6 7 import ( 8 "io" 9 "runtime" 10 "strings" 11 "testing" 12 ) 13 14 var cmpTests = []struct { 15 x, y nat 16 r int 17 }{ 18 {nil, nil, 0}, 19 {nil, nat(nil), 0}, 20 {nat(nil), nil, 0}, 21 {nat(nil), nat(nil), 0}, 22 {nat{0}, nat{0}, 0}, 23 {nat{0}, nat{1}, -1}, 24 {nat{1}, nat{0}, 1}, 25 {nat{1}, nat{1}, 0}, 26 {nat{0, _M}, nat{1}, 1}, 27 {nat{1}, nat{0, _M}, -1}, 28 {nat{1, _M}, nat{0, _M}, 1}, 29 {nat{0, _M}, nat{1, _M}, -1}, 30 {nat{16, 571956, 8794, 68}, nat{837, 9146, 1, 754489}, -1}, 31 {nat{34986, 41, 105, 1957}, nat{56, 7458, 104, 1957}, 1}, 32 } 33 34 func TestCmp(t *testing.T) { 35 for i, a := range cmpTests { 36 r := a.x.cmp(a.y) 37 if r != a.r { 38 t.Errorf("#%d got r = %v; want %v", i, r, a.r) 39 } 40 } 41 } 42 43 type funNN func(z, x, y nat) nat 44 type argNN struct { 45 z, x, y nat 46 } 47 48 var sumNN = []argNN{ 49 {}, 50 {nat{1}, nil, nat{1}}, 51 {nat{1111111110}, nat{123456789}, nat{987654321}}, 52 {nat{0, 0, 0, 1}, nil, nat{0, 0, 0, 1}}, 53 {nat{0, 0, 0, 1111111110}, nat{0, 0, 0, 123456789}, nat{0, 0, 0, 987654321}}, 54 {nat{0, 0, 0, 1}, nat{0, 0, _M}, nat{0, 0, 1}}, 55 } 56 57 var prodNN = []argNN{ 58 {}, 59 {nil, nil, nil}, 60 {nil, nat{991}, nil}, 61 {nat{991}, nat{991}, nat{1}}, 62 {nat{991 * 991}, nat{991}, nat{991}}, 63 {nat{0, 0, 991 * 991}, nat{0, 991}, nat{0, 991}}, 64 {nat{1 * 991, 2 * 991, 3 * 991, 4 * 991}, nat{1, 2, 3, 4}, nat{991}}, 65 {nat{4, 11, 20, 30, 20, 11, 4}, nat{1, 2, 3, 4}, nat{4, 3, 2, 1}}, 66 // 3^100 * 3^28 = 3^128 67 { 68 natFromString("11790184577738583171520872861412518665678211592275841109096961"), 69 natFromString("515377520732011331036461129765621272702107522001"), 70 natFromString("22876792454961"), 71 }, 72 // z = 111....1 (70000 digits) 73 // x = 10^(99*700) + ... + 10^1400 + 10^700 + 1 74 // y = 111....1 (700 digits, larger than Karatsuba threshold on 32-bit and 64-bit) 75 { 76 natFromString(strings.Repeat("1", 70000)), 77 natFromString("1" + strings.Repeat(strings.Repeat("0", 699)+"1", 99)), 78 natFromString(strings.Repeat("1", 700)), 79 }, 80 // z = 111....1 (20000 digits) 81 // x = 10^10000 + 1 82 // y = 111....1 (10000 digits) 83 { 84 natFromString(strings.Repeat("1", 20000)), 85 natFromString("1" + strings.Repeat("0", 9999) + "1"), 86 natFromString(strings.Repeat("1", 10000)), 87 }, 88 } 89 90 func natFromString(s string) nat { 91 x, _, err := nat(nil).scan(strings.NewReader(s), 0) 92 if err != nil { 93 panic(err) 94 } 95 return x 96 } 97 98 func TestSet(t *testing.T) { 99 for _, a := range sumNN { 100 z := nat(nil).set(a.z) 101 if z.cmp(a.z) != 0 { 102 t.Errorf("got z = %v; want %v", z, a.z) 103 } 104 } 105 } 106 107 func testFunNN(t *testing.T, msg string, f funNN, a argNN) { 108 z := f(nil, a.x, a.y) 109 if z.cmp(a.z) != 0 { 110 t.Errorf("%s%+v\n\tgot z = %v; want %v", msg, a, z, a.z) 111 } 112 } 113 114 func TestFunNN(t *testing.T) { 115 for _, a := range sumNN { 116 arg := a 117 testFunNN(t, "add", nat.add, arg) 118 119 arg = argNN{a.z, a.y, a.x} 120 testFunNN(t, "add symmetric", nat.add, arg) 121 122 arg = argNN{a.x, a.z, a.y} 123 testFunNN(t, "sub", nat.sub, arg) 124 125 arg = argNN{a.y, a.z, a.x} 126 testFunNN(t, "sub symmetric", nat.sub, arg) 127 } 128 129 for _, a := range prodNN { 130 arg := a 131 testFunNN(t, "mul", nat.mul, arg) 132 133 arg = argNN{a.z, a.y, a.x} 134 testFunNN(t, "mul symmetric", nat.mul, arg) 135 } 136 } 137 138 var mulRangesN = []struct { 139 a, b uint64 140 prod string 141 }{ 142 {0, 0, "0"}, 143 {1, 1, "1"}, 144 {1, 2, "2"}, 145 {1, 3, "6"}, 146 {10, 10, "10"}, 147 {0, 100, "0"}, 148 {0, 1e9, "0"}, 149 {1, 0, "1"}, // empty range 150 {100, 1, "1"}, // empty range 151 {1, 10, "3628800"}, // 10! 152 {1, 20, "2432902008176640000"}, // 20! 153 {1, 100, 154 "933262154439441526816992388562667004907159682643816214685929" + 155 "638952175999932299156089414639761565182862536979208272237582" + 156 "51185210916864000000000000000000000000", // 100! 157 }, 158 } 159 160 func TestMulRangeN(t *testing.T) { 161 for i, r := range mulRangesN { 162 prod := nat(nil).mulRange(r.a, r.b).decimalString() 163 if prod != r.prod { 164 t.Errorf("#%d: got %s; want %s", i, prod, r.prod) 165 } 166 } 167 } 168 169 // allocBytes returns the number of bytes allocated by invoking f. 170 func allocBytes(f func()) uint64 { 171 var stats runtime.MemStats 172 runtime.ReadMemStats(&stats) 173 t := stats.TotalAlloc 174 f() 175 runtime.ReadMemStats(&stats) 176 return stats.TotalAlloc - t 177 } 178 179 // TestMulUnbalanced tests that multiplying numbers of different lengths 180 // does not cause deep recursion and in turn allocate too much memory. 181 // Test case for issue 3807. 182 func TestMulUnbalanced(t *testing.T) { 183 defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(1)) 184 x := rndNat(50000) 185 y := rndNat(40) 186 allocSize := allocBytes(func() { 187 nat(nil).mul(x, y) 188 }) 189 inputSize := uint64(len(x)+len(y)) * _S 190 if ratio := allocSize / uint64(inputSize); ratio > 10 { 191 t.Errorf("multiplication uses too much memory (%d > %d times the size of inputs)", allocSize, ratio) 192 } 193 } 194 195 func rndNat(n int) nat { 196 return nat(rndV(n)).norm() 197 } 198 199 func BenchmarkMul(b *testing.B) { 200 mulx := rndNat(1e4) 201 muly := rndNat(1e4) 202 b.ResetTimer() 203 for i := 0; i < b.N; i++ { 204 var z nat 205 z.mul(mulx, muly) 206 } 207 } 208 209 func toString(x nat, charset string) string { 210 base := len(charset) 211 212 // special cases 213 switch { 214 case base < 2: 215 panic("illegal base") 216 case len(x) == 0: 217 return string(charset[0]) 218 } 219 220 // allocate buffer for conversion 221 i := x.bitLen()/log2(Word(base)) + 1 // +1: round up 222 s := make([]byte, i) 223 224 // don't destroy x 225 q := nat(nil).set(x) 226 227 // convert 228 for len(q) > 0 { 229 i-- 230 var r Word 231 q, r = q.divW(q, Word(base)) 232 s[i] = charset[r] 233 } 234 235 return string(s[i:]) 236 } 237 238 var strTests = []struct { 239 x nat // nat value to be converted 240 c string // conversion charset 241 s string // expected result 242 }{ 243 {nil, "01", "0"}, 244 {nat{1}, "01", "1"}, 245 {nat{0xc5}, "01", "11000101"}, 246 {nat{03271}, lowercaseDigits[0:8], "3271"}, 247 {nat{10}, lowercaseDigits[0:10], "10"}, 248 {nat{1234567890}, uppercaseDigits[0:10], "1234567890"}, 249 {nat{0xdeadbeef}, lowercaseDigits[0:16], "deadbeef"}, 250 {nat{0xdeadbeef}, uppercaseDigits[0:16], "DEADBEEF"}, 251 {nat{0x229be7}, lowercaseDigits[0:17], "1a2b3c"}, 252 {nat{0x309663e6}, uppercaseDigits[0:32], "O9COV6"}, 253 } 254 255 func TestString(t *testing.T) { 256 for _, a := range strTests { 257 s := a.x.string(a.c) 258 if s != a.s { 259 t.Errorf("string%+v\n\tgot s = %s; want %s", a, s, a.s) 260 } 261 262 x, b, err := nat(nil).scan(strings.NewReader(a.s), len(a.c)) 263 if x.cmp(a.x) != 0 { 264 t.Errorf("scan%+v\n\tgot z = %v; want %v", a, x, a.x) 265 } 266 if b != len(a.c) { 267 t.Errorf("scan%+v\n\tgot b = %d; want %d", a, b, len(a.c)) 268 } 269 if err != nil { 270 t.Errorf("scan%+v\n\tgot error = %s", a, err) 271 } 272 } 273 } 274 275 var natScanTests = []struct { 276 s string // string to be scanned 277 base int // input base 278 x nat // expected nat 279 b int // expected base 280 ok bool // expected success 281 next rune // next character (or 0, if at EOF) 282 }{ 283 // error: illegal base 284 {base: -1}, 285 {base: 1}, 286 {base: 37}, 287 288 // error: no mantissa 289 {}, 290 {s: "?"}, 291 {base: 10}, 292 {base: 36}, 293 {s: "?", base: 10}, 294 {s: "0x"}, 295 {s: "345", base: 2}, 296 297 // no errors 298 {"0", 0, nil, 10, true, 0}, 299 {"0", 10, nil, 10, true, 0}, 300 {"0", 36, nil, 36, true, 0}, 301 {"1", 0, nat{1}, 10, true, 0}, 302 {"1", 10, nat{1}, 10, true, 0}, 303 {"0 ", 0, nil, 10, true, ' '}, 304 {"08", 0, nil, 10, true, '8'}, 305 {"018", 0, nat{1}, 8, true, '8'}, 306 {"0b1", 0, nat{1}, 2, true, 0}, 307 {"0b11000101", 0, nat{0xc5}, 2, true, 0}, 308 {"03271", 0, nat{03271}, 8, true, 0}, 309 {"10ab", 0, nat{10}, 10, true, 'a'}, 310 {"1234567890", 0, nat{1234567890}, 10, true, 0}, 311 {"xyz", 36, nat{(33*36+34)*36 + 35}, 36, true, 0}, 312 {"xyz?", 36, nat{(33*36+34)*36 + 35}, 36, true, '?'}, 313 {"0x", 16, nil, 16, true, 'x'}, 314 {"0xdeadbeef", 0, nat{0xdeadbeef}, 16, true, 0}, 315 {"0XDEADBEEF", 0, nat{0xdeadbeef}, 16, true, 0}, 316 } 317 318 func TestScanBase(t *testing.T) { 319 for _, a := range natScanTests { 320 r := strings.NewReader(a.s) 321 x, b, err := nat(nil).scan(r, a.base) 322 if err == nil && !a.ok { 323 t.Errorf("scan%+v\n\texpected error", a) 324 } 325 if err != nil { 326 if a.ok { 327 t.Errorf("scan%+v\n\tgot error = %s", a, err) 328 } 329 continue 330 } 331 if x.cmp(a.x) != 0 { 332 t.Errorf("scan%+v\n\tgot z = %v; want %v", a, x, a.x) 333 } 334 if b != a.b { 335 t.Errorf("scan%+v\n\tgot b = %d; want %d", a, b, a.base) 336 } 337 next, _, err := r.ReadRune() 338 if err == io.EOF { 339 next = 0 340 err = nil 341 } 342 if err == nil && next != a.next { 343 t.Errorf("scan%+v\n\tgot next = %q; want %q", a, next, a.next) 344 } 345 } 346 } 347 348 var pi = "3" + 349 "14159265358979323846264338327950288419716939937510582097494459230781640628620899862803482534211706798214808651" + 350 "32823066470938446095505822317253594081284811174502841027019385211055596446229489549303819644288109756659334461" + 351 "28475648233786783165271201909145648566923460348610454326648213393607260249141273724587006606315588174881520920" + 352 "96282925409171536436789259036001133053054882046652138414695194151160943305727036575959195309218611738193261179" + 353 "31051185480744623799627495673518857527248912279381830119491298336733624406566430860213949463952247371907021798" + 354 "60943702770539217176293176752384674818467669405132000568127145263560827785771342757789609173637178721468440901" + 355 "22495343014654958537105079227968925892354201995611212902196086403441815981362977477130996051870721134999999837" + 356 "29780499510597317328160963185950244594553469083026425223082533446850352619311881710100031378387528865875332083" + 357 "81420617177669147303598253490428755468731159562863882353787593751957781857780532171226806613001927876611195909" + 358 "21642019893809525720106548586327886593615338182796823030195203530185296899577362259941389124972177528347913151" + 359 "55748572424541506959508295331168617278558890750983817546374649393192550604009277016711390098488240128583616035" + 360 "63707660104710181942955596198946767837449448255379774726847104047534646208046684259069491293313677028989152104" + 361 "75216205696602405803815019351125338243003558764024749647326391419927260426992279678235478163600934172164121992" + 362 "45863150302861829745557067498385054945885869269956909272107975093029553211653449872027559602364806654991198818" + 363 "34797753566369807426542527862551818417574672890977772793800081647060016145249192173217214772350141441973568548" + 364 "16136115735255213347574184946843852332390739414333454776241686251898356948556209921922218427255025425688767179" + 365 "04946016534668049886272327917860857843838279679766814541009538837863609506800642251252051173929848960841284886" + 366 "26945604241965285022210661186306744278622039194945047123713786960956364371917287467764657573962413890865832645" + 367 "99581339047802759009946576407895126946839835259570982582262052248940772671947826848260147699090264013639443745" + 368 "53050682034962524517493996514314298091906592509372216964615157098583874105978859597729754989301617539284681382" + 369 "68683868942774155991855925245953959431049972524680845987273644695848653836736222626099124608051243884390451244" + 370 "13654976278079771569143599770012961608944169486855584840635342207222582848864815845602850601684273945226746767" + 371 "88952521385225499546667278239864565961163548862305774564980355936345681743241125150760694794510965960940252288" + 372 "79710893145669136867228748940560101503308617928680920874760917824938589009714909675985261365549781893129784821" + 373 "68299894872265880485756401427047755513237964145152374623436454285844479526586782105114135473573952311342716610" + 374 "21359695362314429524849371871101457654035902799344037420073105785390621983874478084784896833214457138687519435" + 375 "06430218453191048481005370614680674919278191197939952061419663428754440643745123718192179998391015919561814675" + 376 "14269123974894090718649423196156794520809514655022523160388193014209376213785595663893778708303906979207734672" + 377 "21825625996615014215030680384477345492026054146659252014974428507325186660021324340881907104863317346496514539" + 378 "05796268561005508106658796998163574736384052571459102897064140110971206280439039759515677157700420337869936007" + 379 "23055876317635942187312514712053292819182618612586732157919841484882916447060957527069572209175671167229109816" + 380 "90915280173506712748583222871835209353965725121083579151369882091444210067510334671103141267111369908658516398" + 381 "31501970165151168517143765761835155650884909989859982387345528331635507647918535893226185489632132933089857064" + 382 "20467525907091548141654985946163718027098199430992448895757128289059232332609729971208443357326548938239119325" + 383 "97463667305836041428138830320382490375898524374417029132765618093773444030707469211201913020330380197621101100" + 384 "44929321516084244485963766983895228684783123552658213144957685726243344189303968642624341077322697802807318915" + 385 "44110104468232527162010526522721116603966655730925471105578537634668206531098965269186205647693125705863566201" + 386 "85581007293606598764861179104533488503461136576867532494416680396265797877185560845529654126654085306143444318" + 387 "58676975145661406800700237877659134401712749470420562230538994561314071127000407854733269939081454664645880797" + 388 "27082668306343285878569830523580893306575740679545716377525420211495576158140025012622859413021647155097925923" + 389 "09907965473761255176567513575178296664547791745011299614890304639947132962107340437518957359614589019389713111" + 390 "79042978285647503203198691514028708085990480109412147221317947647772622414254854540332157185306142288137585043" + 391 "06332175182979866223717215916077166925474873898665494945011465406284336639379003976926567214638530673609657120" + 392 "91807638327166416274888800786925602902284721040317211860820419000422966171196377921337575114959501566049631862" + 393 "94726547364252308177036751590673502350728354056704038674351362222477158915049530984448933309634087807693259939" + 394 "78054193414473774418426312986080998886874132604721569516239658645730216315981931951673538129741677294786724229" + 395 "24654366800980676928238280689964004824354037014163149658979409243237896907069779422362508221688957383798623001" + 396 "59377647165122893578601588161755782973523344604281512627203734314653197777416031990665541876397929334419521541" + 397 "34189948544473456738316249934191318148092777710386387734317720754565453220777092120190516609628049092636019759" + 398 "88281613323166636528619326686336062735676303544776280350450777235547105859548702790814356240145171806246436267" + 399 "94561275318134078330336254232783944975382437205835311477119926063813346776879695970309833913077109870408591337" 400 401 // Test case for BenchmarkScanPi. 402 func TestScanPi(t *testing.T) { 403 var x nat 404 z, _, err := x.scan(strings.NewReader(pi), 10) 405 if err != nil { 406 t.Errorf("scanning pi: %s", err) 407 } 408 if s := z.decimalString(); s != pi { 409 t.Errorf("scanning pi: got %s", s) 410 } 411 } 412 413 func TestScanPiParallel(t *testing.T) { 414 const n = 2 415 c := make(chan int) 416 for i := 0; i < n; i++ { 417 go func() { 418 TestScanPi(t) 419 c <- 0 420 }() 421 } 422 for i := 0; i < n; i++ { 423 <-c 424 } 425 } 426 427 func BenchmarkScanPi(b *testing.B) { 428 for i := 0; i < b.N; i++ { 429 var x nat 430 x.scan(strings.NewReader(pi), 10) 431 } 432 } 433 434 func BenchmarkStringPiParallel(b *testing.B) { 435 var x nat 436 x, _, _ = x.scan(strings.NewReader(pi), 0) 437 if x.decimalString() != pi { 438 panic("benchmark incorrect: conversion failed") 439 } 440 b.RunParallel(func(pb *testing.PB) { 441 for pb.Next() { 442 x.decimalString() 443 } 444 }) 445 } 446 447 func BenchmarkScan10Base2(b *testing.B) { ScanHelper(b, 2, 10, 10) } 448 func BenchmarkScan100Base2(b *testing.B) { ScanHelper(b, 2, 10, 100) } 449 func BenchmarkScan1000Base2(b *testing.B) { ScanHelper(b, 2, 10, 1000) } 450 func BenchmarkScan10000Base2(b *testing.B) { ScanHelper(b, 2, 10, 10000) } 451 func BenchmarkScan100000Base2(b *testing.B) { ScanHelper(b, 2, 10, 100000) } 452 453 func BenchmarkScan10Base8(b *testing.B) { ScanHelper(b, 8, 10, 10) } 454 func BenchmarkScan100Base8(b *testing.B) { ScanHelper(b, 8, 10, 100) } 455 func BenchmarkScan1000Base8(b *testing.B) { ScanHelper(b, 8, 10, 1000) } 456 func BenchmarkScan10000Base8(b *testing.B) { ScanHelper(b, 8, 10, 10000) } 457 func BenchmarkScan100000Base8(b *testing.B) { ScanHelper(b, 8, 10, 100000) } 458 459 func BenchmarkScan10Base10(b *testing.B) { ScanHelper(b, 10, 10, 10) } 460 func BenchmarkScan100Base10(b *testing.B) { ScanHelper(b, 10, 10, 100) } 461 func BenchmarkScan1000Base10(b *testing.B) { ScanHelper(b, 10, 10, 1000) } 462 func BenchmarkScan10000Base10(b *testing.B) { ScanHelper(b, 10, 10, 10000) } 463 func BenchmarkScan100000Base10(b *testing.B) { ScanHelper(b, 10, 10, 100000) } 464 465 func BenchmarkScan10Base16(b *testing.B) { ScanHelper(b, 16, 10, 10) } 466 func BenchmarkScan100Base16(b *testing.B) { ScanHelper(b, 16, 10, 100) } 467 func BenchmarkScan1000Base16(b *testing.B) { ScanHelper(b, 16, 10, 1000) } 468 func BenchmarkScan10000Base16(b *testing.B) { ScanHelper(b, 16, 10, 10000) } 469 func BenchmarkScan100000Base16(b *testing.B) { ScanHelper(b, 16, 10, 100000) } 470 471 func ScanHelper(b *testing.B, base int, x, y Word) { 472 b.StopTimer() 473 var z nat 474 z = z.expWW(x, y) 475 476 var s string 477 s = z.string(lowercaseDigits[0:base]) 478 if t := toString(z, lowercaseDigits[0:base]); t != s { 479 b.Fatalf("scanning: got %s; want %s", s, t) 480 } 481 b.StartTimer() 482 483 for i := 0; i < b.N; i++ { 484 z.scan(strings.NewReader(s), base) 485 } 486 } 487 488 func BenchmarkString10Base2(b *testing.B) { StringHelper(b, 2, 10, 10) } 489 func BenchmarkString100Base2(b *testing.B) { StringHelper(b, 2, 10, 100) } 490 func BenchmarkString1000Base2(b *testing.B) { StringHelper(b, 2, 10, 1000) } 491 func BenchmarkString10000Base2(b *testing.B) { StringHelper(b, 2, 10, 10000) } 492 func BenchmarkString100000Base2(b *testing.B) { StringHelper(b, 2, 10, 100000) } 493 494 func BenchmarkString10Base8(b *testing.B) { StringHelper(b, 8, 10, 10) } 495 func BenchmarkString100Base8(b *testing.B) { StringHelper(b, 8, 10, 100) } 496 func BenchmarkString1000Base8(b *testing.B) { StringHelper(b, 8, 10, 1000) } 497 func BenchmarkString10000Base8(b *testing.B) { StringHelper(b, 8, 10, 10000) } 498 func BenchmarkString100000Base8(b *testing.B) { StringHelper(b, 8, 10, 100000) } 499 500 func BenchmarkString10Base10(b *testing.B) { StringHelper(b, 10, 10, 10) } 501 func BenchmarkString100Base10(b *testing.B) { StringHelper(b, 10, 10, 100) } 502 func BenchmarkString1000Base10(b *testing.B) { StringHelper(b, 10, 10, 1000) } 503 func BenchmarkString10000Base10(b *testing.B) { StringHelper(b, 10, 10, 10000) } 504 func BenchmarkString100000Base10(b *testing.B) { StringHelper(b, 10, 10, 100000) } 505 506 func BenchmarkString10Base16(b *testing.B) { StringHelper(b, 16, 10, 10) } 507 func BenchmarkString100Base16(b *testing.B) { StringHelper(b, 16, 10, 100) } 508 func BenchmarkString1000Base16(b *testing.B) { StringHelper(b, 16, 10, 1000) } 509 func BenchmarkString10000Base16(b *testing.B) { StringHelper(b, 16, 10, 10000) } 510 func BenchmarkString100000Base16(b *testing.B) { StringHelper(b, 16, 10, 100000) } 511 512 func StringHelper(b *testing.B, base int, x, y Word) { 513 b.StopTimer() 514 var z nat 515 z = z.expWW(x, y) 516 z.string(lowercaseDigits[0:base]) // warm divisor cache 517 b.StartTimer() 518 519 for i := 0; i < b.N; i++ { 520 _ = z.string(lowercaseDigits[0:base]) 521 } 522 } 523 524 func BenchmarkLeafSize0(b *testing.B) { LeafSizeHelper(b, 10, 0) } // test without splitting 525 func BenchmarkLeafSize1(b *testing.B) { LeafSizeHelper(b, 10, 1) } 526 func BenchmarkLeafSize2(b *testing.B) { LeafSizeHelper(b, 10, 2) } 527 func BenchmarkLeafSize3(b *testing.B) { LeafSizeHelper(b, 10, 3) } 528 func BenchmarkLeafSize4(b *testing.B) { LeafSizeHelper(b, 10, 4) } 529 func BenchmarkLeafSize5(b *testing.B) { LeafSizeHelper(b, 10, 5) } 530 func BenchmarkLeafSize6(b *testing.B) { LeafSizeHelper(b, 10, 6) } 531 func BenchmarkLeafSize7(b *testing.B) { LeafSizeHelper(b, 10, 7) } 532 func BenchmarkLeafSize8(b *testing.B) { LeafSizeHelper(b, 10, 8) } 533 func BenchmarkLeafSize9(b *testing.B) { LeafSizeHelper(b, 10, 9) } 534 func BenchmarkLeafSize10(b *testing.B) { LeafSizeHelper(b, 10, 10) } 535 func BenchmarkLeafSize11(b *testing.B) { LeafSizeHelper(b, 10, 11) } 536 func BenchmarkLeafSize12(b *testing.B) { LeafSizeHelper(b, 10, 12) } 537 func BenchmarkLeafSize13(b *testing.B) { LeafSizeHelper(b, 10, 13) } 538 func BenchmarkLeafSize14(b *testing.B) { LeafSizeHelper(b, 10, 14) } 539 func BenchmarkLeafSize15(b *testing.B) { LeafSizeHelper(b, 10, 15) } 540 func BenchmarkLeafSize16(b *testing.B) { LeafSizeHelper(b, 10, 16) } 541 func BenchmarkLeafSize32(b *testing.B) { LeafSizeHelper(b, 10, 32) } // try some large lengths 542 func BenchmarkLeafSize64(b *testing.B) { LeafSizeHelper(b, 10, 64) } 543 544 func LeafSizeHelper(b *testing.B, base Word, size int) { 545 b.StopTimer() 546 originalLeafSize := leafSize 547 resetTable(cacheBase10.table[:]) 548 leafSize = size 549 b.StartTimer() 550 551 for d := 1; d <= 10000; d *= 10 { 552 b.StopTimer() 553 var z nat 554 z = z.expWW(base, Word(d)) // build target number 555 _ = z.string(lowercaseDigits[0:base]) // warm divisor cache 556 b.StartTimer() 557 558 for i := 0; i < b.N; i++ { 559 _ = z.string(lowercaseDigits[0:base]) 560 } 561 } 562 563 b.StopTimer() 564 resetTable(cacheBase10.table[:]) 565 leafSize = originalLeafSize 566 b.StartTimer() 567 } 568 569 func resetTable(table []divisor) { 570 if table != nil && table[0].bbb != nil { 571 for i := 0; i < len(table); i++ { 572 table[i].bbb = nil 573 table[i].nbits = 0 574 table[i].ndigits = 0 575 } 576 } 577 } 578 579 func TestStringPowers(t *testing.T) { 580 var b, p Word 581 for b = 2; b <= 16; b++ { 582 for p = 0; p <= 512; p++ { 583 x := nat(nil).expWW(b, p) 584 xs := x.string(lowercaseDigits[0:b]) 585 xs2 := toString(x, lowercaseDigits[0:b]) 586 if xs != xs2 { 587 t.Errorf("failed at %d ** %d in base %d: %s != %s", b, p, b, xs, xs2) 588 } 589 } 590 if b >= 3 && testing.Short() { 591 break 592 } 593 } 594 } 595 596 func TestLeadingZeros(t *testing.T) { 597 var x Word = _B >> 1 598 for i := 0; i <= _W; i++ { 599 if int(leadingZeros(x)) != i { 600 t.Errorf("failed at %x: got %d want %d", x, leadingZeros(x), i) 601 } 602 x >>= 1 603 } 604 } 605 606 type shiftTest struct { 607 in nat 608 shift uint 609 out nat 610 } 611 612 var leftShiftTests = []shiftTest{ 613 {nil, 0, nil}, 614 {nil, 1, nil}, 615 {natOne, 0, natOne}, 616 {natOne, 1, natTwo}, 617 {nat{1 << (_W - 1)}, 1, nat{0}}, 618 {nat{1 << (_W - 1), 0}, 1, nat{0, 1}}, 619 } 620 621 func TestShiftLeft(t *testing.T) { 622 for i, test := range leftShiftTests { 623 var z nat 624 z = z.shl(test.in, test.shift) 625 for j, d := range test.out { 626 if j >= len(z) || z[j] != d { 627 t.Errorf("#%d: got: %v want: %v", i, z, test.out) 628 break 629 } 630 } 631 } 632 } 633 634 var rightShiftTests = []shiftTest{ 635 {nil, 0, nil}, 636 {nil, 1, nil}, 637 {natOne, 0, natOne}, 638 {natOne, 1, nil}, 639 {natTwo, 1, natOne}, 640 {nat{0, 1}, 1, nat{1 << (_W - 1)}}, 641 {nat{2, 1, 1}, 1, nat{1<<(_W-1) + 1, 1 << (_W - 1)}}, 642 } 643 644 func TestShiftRight(t *testing.T) { 645 for i, test := range rightShiftTests { 646 var z nat 647 z = z.shr(test.in, test.shift) 648 for j, d := range test.out { 649 if j >= len(z) || z[j] != d { 650 t.Errorf("#%d: got: %v want: %v", i, z, test.out) 651 break 652 } 653 } 654 } 655 } 656 657 type modWTest struct { 658 in string 659 dividend string 660 out string 661 } 662 663 var modWTests32 = []modWTest{ 664 {"23492635982634928349238759823742", "252341", "220170"}, 665 } 666 667 var modWTests64 = []modWTest{ 668 {"6527895462947293856291561095690465243862946", "524326975699234", "375066989628668"}, 669 } 670 671 func runModWTests(t *testing.T, tests []modWTest) { 672 for i, test := range tests { 673 in, _ := new(Int).SetString(test.in, 10) 674 d, _ := new(Int).SetString(test.dividend, 10) 675 out, _ := new(Int).SetString(test.out, 10) 676 677 r := in.abs.modW(d.abs[0]) 678 if r != out.abs[0] { 679 t.Errorf("#%d failed: got %d want %s", i, r, out) 680 } 681 } 682 } 683 684 func TestModW(t *testing.T) { 685 if _W >= 32 { 686 runModWTests(t, modWTests32) 687 } 688 if _W >= 64 { 689 runModWTests(t, modWTests64) 690 } 691 } 692 693 func TestTrailingZeroBits(t *testing.T) { 694 x := Word(1) 695 for i := uint(0); i <= _W; i++ { 696 n := trailingZeroBits(x) 697 if n != i%_W { 698 t.Errorf("got trailingZeroBits(%#x) = %d; want %d", x, n, i%_W) 699 } 700 x <<= 1 701 } 702 703 y := nat(nil).set(natOne) 704 for i := uint(0); i <= 3*_W; i++ { 705 n := y.trailingZeroBits() 706 if n != i { 707 t.Errorf("got 0x%s.trailingZeroBits() = %d; want %d", y.string(lowercaseDigits[0:16]), n, i) 708 } 709 y = y.shl(y, 1) 710 } 711 } 712 713 var expNNTests = []struct { 714 x, y, m string 715 out string 716 }{ 717 {"0", "0", "0", "1"}, 718 {"0", "0", "1", "0"}, 719 {"1", "1", "1", "0"}, 720 {"2", "1", "1", "0"}, 721 {"2", "2", "1", "0"}, 722 {"10", "100000000000", "1", "0"}, 723 {"0x8000000000000000", "2", "", "0x40000000000000000000000000000000"}, 724 {"0x8000000000000000", "2", "6719", "4944"}, 725 {"0x8000000000000000", "3", "6719", "5447"}, 726 {"0x8000000000000000", "1000", "6719", "1603"}, 727 {"0x8000000000000000", "1000000", "6719", "3199"}, 728 { 729 "2938462938472983472983659726349017249287491026512746239764525612965293865296239471239874193284792387498274256129746192347", 730 "298472983472983471903246121093472394872319615612417471234712061", 731 "29834729834729834729347290846729561262544958723956495615629569234729836259263598127342374289365912465901365498236492183464", 732 "23537740700184054162508175125554701713153216681790245129157191391322321508055833908509185839069455749219131480588829346291", 733 }, 734 } 735 736 func TestExpNN(t *testing.T) { 737 for i, test := range expNNTests { 738 x, _, _ := nat(nil).scan(strings.NewReader(test.x), 0) 739 y, _, _ := nat(nil).scan(strings.NewReader(test.y), 0) 740 out, _, _ := nat(nil).scan(strings.NewReader(test.out), 0) 741 742 var m nat 743 744 if len(test.m) > 0 { 745 m, _, _ = nat(nil).scan(strings.NewReader(test.m), 0) 746 } 747 748 z := nat(nil).expNN(x, y, m) 749 if z.cmp(out) != 0 { 750 t.Errorf("#%d got %s want %s", i, z.decimalString(), out.decimalString()) 751 } 752 } 753 } 754 755 func ExpHelper(b *testing.B, x, y Word) { 756 var z nat 757 for i := 0; i < b.N; i++ { 758 z.expWW(x, y) 759 } 760 } 761 762 func BenchmarkExp3Power0x10(b *testing.B) { ExpHelper(b, 3, 0x10) } 763 func BenchmarkExp3Power0x40(b *testing.B) { ExpHelper(b, 3, 0x40) } 764 func BenchmarkExp3Power0x100(b *testing.B) { ExpHelper(b, 3, 0x100) } 765 func BenchmarkExp3Power0x400(b *testing.B) { ExpHelper(b, 3, 0x400) } 766 func BenchmarkExp3Power0x1000(b *testing.B) { ExpHelper(b, 3, 0x1000) } 767 func BenchmarkExp3Power0x4000(b *testing.B) { ExpHelper(b, 3, 0x4000) } 768 func BenchmarkExp3Power0x10000(b *testing.B) { ExpHelper(b, 3, 0x10000) } 769 func BenchmarkExp3Power0x40000(b *testing.B) { ExpHelper(b, 3, 0x40000) } 770 func BenchmarkExp3Power0x100000(b *testing.B) { ExpHelper(b, 3, 0x100000) } 771 func BenchmarkExp3Power0x400000(b *testing.B) { ExpHelper(b, 3, 0x400000) }