mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-05 23:33:07 +00:00
polynomial_long_division -> polynomial_division
This commit is contained in:
parent
8b309fef41
commit
4d5ea83325
@ -130,7 +130,7 @@ impl<F: Field> PolynomialCoeffs<F> {
|
||||
pub(crate) fn div_rem(&self, rhs: &Self) -> (Self, Self) {
|
||||
let lhs = Polynomial::from(self.clone());
|
||||
let rhs = Polynomial::from(rhs.clone());
|
||||
let (q, r) = lhs.polynomial_long_division(&rhs);
|
||||
let (q, r) = lhs.polynomial_division(&rhs);
|
||||
(q.into(), r.into())
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user