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.java1258 BigInteger current_term = scaled_1; in approximate() local
1263 while (current_term.abs().compareTo(max_trunc_error) >= 0) { in approximate()
1267 current_term = scale(current_term.multiply(op_appr), op_prec); in approximate()
1268 current_term = current_term.divide(BigInteger.valueOf(n)); in approximate()
1269 current_sum = current_sum.add(current_term); in approximate()
1299 BigInteger current_term; in approximate() local
1304 current_term = big1.shiftLeft(-calc_precision); in approximate()
1305 BigInteger current_sum = current_term; in approximate()
1306 while (current_term.abs().compareTo(max_trunc_error) >= 0) { in approximate()
1310 current_term = scale(current_term.multiply(op_appr), op_prec); in approximate()
[all …]