Skip to content

Commit

Permalink
need that division method to implement the jacobi recursion,
Browse files Browse the repository at this point in the history
  • Loading branch information
crowlogic committed Dec 15, 2023
1 parent 11fcfa4 commit aab07f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions native/RealPolynomial.i
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ import arb.algebra.Ring;

/**
* Performs polynomial division without remainder by calling
* {@link arblib#arb_poly_div_series(RealPolynomial, RealPolynomial, RealPolynomial, int, int)},
* the {@link RealPolynomial#getLength()} is used as the value of n to pass to
* {@link arblib#arb_poly_div_series(RealPolynomial, RealPolynomial, RealPolynomial, int, int)}
*/
@Override
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/arb/RealPolynomial.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ public String toString()

/**
* Performs polynomial division without remainder by calling
* {@link arblib#arb_poly_div_series(RealPolynomial, RealPolynomial, RealPolynomial, int, int)},
* the {@link RealPolynomial#getLength()} is used as the value of n to pass to
* {@link arblib#arb_poly_div_series(RealPolynomial, RealPolynomial, RealPolynomial, int, int)}
*/
@Override
Expand Down

0 comments on commit aab07f0

Please sign in to comment.