panks / BigInteger

An Implementation of BigInteger library in C++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

no sqrt

Darelbi opened this issue · comments

a big integer library should provide at least the following 2 non-trivial functions.

  • Fast multiplication (at least karatsuba, but Fourier transform derivations are much better)
  • Sqrt (possibily using Newton reciprocal square root)
  • Show that library works for some well-known number that are easy to verify.