Data update

This commit is contained in:
Ingy döt Net 2026-02-01 16:33:20 -08:00
parent 5150844a7d
commit 4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions

View file

@ -16,13 +16,10 @@ func[] bnmul a[] b[] .
.
func[] bnadd a[] b[] .
if len a[] < len b[] : swap a[] b[]
for i = 1 to len b[]
h = a[i] + b[i] + c
r[] &= h mod 10000000
c = h div 10000000
.
for i = len b[] + 1 to len a[]
h = a[i] + c
for i = 1 to len a[]
bi = 0
if i <= len b[] : bi = b[i]
h = a[i] + bi + c
r[] &= h mod 10000000
c = h div 10000000
.