Home
last modified time | relevance | path

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

/external/crcalc/src/com/hp/creals/
DCR.java1216 BigInteger current_term = scaled_1; in approximate() local
1221 while (current_term.abs().compareTo(max_trunc_error) >= 0) { in approximate()
1225 current_term = scale(current_term.multiply(op_appr), op_prec); in approximate()
1226 current_term = current_term.divide(BigInteger.valueOf(n)); in approximate()
1227 current_sum = current_sum.add(current_term); in approximate()
1257 BigInteger current_term; in approximate() local
1262 current_term = big1.shiftLeft(-calc_precision); in approximate()
1263 BigInteger current_sum = current_term; in approximate()
1264 while (current_term.abs().compareTo(max_trunc_error) >= 0) { in approximate()
1268 current_term = scale(current_term.multiply(op_appr), op_prec); in approximate()
[all …]