pub struct EvaluationVector<F> { /* private fields */ }Expand description
The result of evaluating a vector of polynomials over all points in an interpolation domain.
This struct also remembers which rows have ever been filled with Self::fill_row. This is used in Self::recover, which can use the rows that are present to fill in the missing rows.
Implementations§
Source§impl<F: FieldNTT> EvaluationVector<F>
impl<F: FieldNTT> EvaluationVector<F>
Sourcepub fn recover(self) -> PolynomialVector<F>
pub fn recover(self) -> PolynomialVector<F>
Attempt to recover the missing rows in this data.
Source§impl<F: Additive> EvaluationVector<F>
impl<F: Additive> EvaluationVector<F>
Source§impl<F> EvaluationVector<F>
impl<F> EvaluationVector<F>
Trait Implementations§
Source§impl<F: Debug> Debug for EvaluationVector<F>
impl<F: Debug> Debug for EvaluationVector<F>
Source§impl<F: PartialEq> PartialEq for EvaluationVector<F>
impl<F: PartialEq> PartialEq for EvaluationVector<F>
impl<F> StructuralPartialEq for EvaluationVector<F>
Auto Trait Implementations§
impl<F> Freeze for EvaluationVector<F>
impl<F> RefUnwindSafe for EvaluationVector<F>where
F: RefUnwindSafe,
impl<F> Send for EvaluationVector<F>where
F: Send,
impl<F> Sync for EvaluationVector<F>where
F: Sync,
impl<F> Unpin for EvaluationVector<F>where
F: Unpin,
impl<F> UnsafeUnpin for EvaluationVector<F>
impl<F> UnwindSafe for EvaluationVector<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