pub struct CompositionPolyTrace<E>(/* private fields */);Expand description
Represents merged evaluations of all constraint evaluations.
Implementations§
Source§impl<E: FieldElement> CompositionPolyTrace<E>
impl<E: FieldElement> CompositionPolyTrace<E>
Sourcepub fn new(evaluations: Vec<E>) -> Self
pub fn new(evaluations: Vec<E>) -> Self
Returns a new instance of CompositionPolyTrace instantiated from the provided evaluations.
§Panics
Panics if the number of evaluations is not a power of 2.
Sourcepub fn into_inner(self) -> Vec<E>
pub fn into_inner(self) -> Vec<E>
Returns the internal vector representing this trace.
Auto Trait Implementations§
impl<E> Freeze for CompositionPolyTrace<E>
impl<E> RefUnwindSafe for CompositionPolyTrace<E>where
E: RefUnwindSafe,
impl<E> Send for CompositionPolyTrace<E>where
E: Send,
impl<E> Sync for CompositionPolyTrace<E>where
E: Sync,
impl<E> Unpin for CompositionPolyTrace<E>where
E: Unpin,
impl<E> UnwindSafe for CompositionPolyTrace<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