pub struct QuotientOodFrame<E>where
E: FieldElement,{ /* private fields */ }Expand description
Quotient polynomial evaluation frame at the out-of-domain points.
Stores the quotient polynomials evaluations at z and g * z, where z is a random Field
element in current_row and next_row, respectively.
Implementations§
Source§impl<E> QuotientOodFrame<E>where
E: FieldElement,
impl<E> QuotientOodFrame<E>where
E: FieldElement,
Sourcepub fn new(current_row: Vec<E>, next_row: Vec<E>) -> QuotientOodFrame<E>
pub fn new(current_row: Vec<E>, next_row: Vec<E>) -> QuotientOodFrame<E>
Creates a new QuotientOodFrame from current, next.
Sourcepub fn current_row(&self) -> &[E]
pub fn current_row(&self) -> &[E]
Returns the current row.
Sourcepub fn to_trace_states(&self) -> Vec<E>
pub fn to_trace_states(&self) -> Vec<E>
Returns the frame as a vector of elements.
Auto Trait Implementations§
impl<E> Freeze for QuotientOodFrame<E>
impl<E> RefUnwindSafe for QuotientOodFrame<E>where
E: RefUnwindSafe,
impl<E> Send for QuotientOodFrame<E>
impl<E> Sync for QuotientOodFrame<E>
impl<E> Unpin for QuotientOodFrame<E>where
E: Unpin,
impl<E> UnwindSafe for QuotientOodFrame<E>where
E: 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