Poly

Type Alias Poly 

Source
pub type Poly<F> = DensePolynomial<F>;

Aliased Type§

pub struct Poly<F> {
    pub coeffs: Vec<F>,
}

Fields§

§coeffs: Vec<F>

The coefficient of x^i is stored at location i in self.coeffs.

Trait Implementations§

Source§

impl<F: PrimeField> EuclideanPolynomial<F> for Poly<F>

Source§

fn divide_with_q_and_r(&self, divisor: &Poly<F>) -> (Poly<F>, Poly<F>)