Home
last modified time | relevance | path

Searched refs:rough_appr (Results 1 – 2 of 2) sorted by relevance

/external/crcalc/src/com/hp/creals/
DCR.java854 BigInteger rough_appr = get_appr(low_prec); in exp() local
855 if (rough_appr.signum() < 0) return negate().exp().inverse(); in exp()
856 if (rough_appr.compareTo(big2) > 0) { in exp()
909 BigInteger rough_appr = get_appr(-10); in asin() local
910 if (rough_appr.compareTo(big750) /* 1/sqrt(2) + a bit */ > 0){ in asin()
913 } else if (rough_appr.compareTo(bigm750) < 0) { in asin()
938 BigInteger rough_appr = get_appr(low_prec); /* In sixteenths */ in ln() local
939 if (rough_appr.compareTo(big0) < 0) { in ln()
942 if (rough_appr.compareTo(low_ln_limit) <= 0) { in ln()
945 if (rough_appr.compareTo(high_ln_limit) >= 0) { in ln()
[all …]
DUnaryCRFunction.java405 BigInteger rough_appr = get_appr(rough_prec); in approximate() local
407 trace("prev. prec = " + rough_prec + " appr = " + rough_appr); in approximate()
408 h = rough_appr.add(big1) in approximate()
410 l = rough_appr.subtract(big1) in approximate()