Package de.tilman_neumann.jml.roots

  • Class Summary
    Class Description
    Roots
    i.th root of integers.
    RootsReal
    i.th root of floating point numbers.
    SqrtExact
    Fast recognition of exact integer squares, using the algorithm explained in class SqrtExactTest.
    SqrtInt
    Fast sqrt() computation with integer solutions using Herons (or "Babylonian") method and the built-in Math.sqrt() as initial guess.
    SqrtReal
    Compute square root of large numbers using Heron's method with a good initial guess.
    SqrtTest