pub struct SuccinctCheckPolynomial<F: Field>(pub Vec<F>);Expand description
SuccinctCheckPolynomial is a succinctly-representated polynomial
generated from the log_d random oracle challenges generated in open.
It has the special property that can be evaluated in O(log_d) time.
Tuple Fields§
§0: Vec<F>Implementations§
Source§impl<F: Field> SuccinctCheckPolynomial<F>
impl<F: Field> SuccinctCheckPolynomial<F>
Sourcepub fn compute_coeffs(&self) -> Vec<F>
pub fn compute_coeffs(&self) -> Vec<F>
Computes the coefficients of the underlying degree d polynomial.
Auto Trait Implementations§
impl<F> Freeze for SuccinctCheckPolynomial<F>
impl<F> RefUnwindSafe for SuccinctCheckPolynomial<F>where
F: RefUnwindSafe,
impl<F> Send for SuccinctCheckPolynomial<F>
impl<F> Sync for SuccinctCheckPolynomial<F>
impl<F> Unpin for SuccinctCheckPolynomial<F>where
F: Unpin,
impl<F> UnwindSafe for SuccinctCheckPolynomial<F>where
F: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more