pub struct WitnessOverDomains<F: FftField> {
pub this: WitnessEvals<F>,
pub z_next: Evaluations<F, Radix2EvaluationDomain<F>>,
}Expand description
The witness and the permutation accumulator, evaluated over d8.
Only the values the quotient is built from: constraints referring to the next row are evaluated by shifting the index into these same evaluations, so no separately shifted copy of the witness is kept.
Fields§
§this: WitnessEvals<F>The wires and the permutation accumulator at each row.
z_next: Evaluations<F, Radix2EvaluationDomain<F>>The permutation accumulator one row on, which the permutation argument
compares against the accumulator in Self::this.
Trait Implementations§
Source§impl<F: Clone + FftField> Clone for WitnessOverDomains<F>
impl<F: Clone + FftField> Clone for WitnessOverDomains<F>
Source§fn clone(&self) -> WitnessOverDomains<F>
fn clone(&self) -> WitnessOverDomains<F>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<F> Freeze for WitnessOverDomains<F>where
F: Freeze,
impl<F> RefUnwindSafe for WitnessOverDomains<F>where
F: RefUnwindSafe,
impl<F> Send for WitnessOverDomains<F>
impl<F> Sync for WitnessOverDomains<F>
impl<F> Unpin for WitnessOverDomains<F>where
F: Unpin,
impl<F> UnsafeUnpin for WitnessOverDomains<F>where
F: UnsafeUnpin,
impl<F> UnwindSafe for WitnessOverDomains<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