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:
parent
97a9dcf29e
commit
6f74aee73d
|
@ -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} */
|
||||
|
|
Loading…
Reference in New Issue