fixed a forgotten replacement of divide method

JIRA: MATH-307

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@894109 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2009-12-27 21:06:21 +00:00
parent 97a9dcf29e
commit 6f74aee73d
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ public class BigReal implements FieldElement<BigReal>, Comparable<BigReal>, Seri
/** {@inheritDoc} */
public BigReal divide(BigReal a) throws ArithmeticException {
return new BigReal(d.divide(a.d));
return new BigReal(d.divide(a.d, scale, roundingMode));
}
/** {@inheritDoc} */