pub struct MsetcheckWitness<'a, PW: PackedField> { /* private fields */ }
Implementations§
source§impl<'a, PW: PackedField> MsetcheckWitness<'a, PW>
impl<'a, PW: PackedField> MsetcheckWitness<'a, PW>
sourcepub fn t_polynomials(&self) -> &Vec<MultilinearWitness<'a, PW>>
pub fn t_polynomials(&self) -> &Vec<MultilinearWitness<'a, PW>>
Witnesses to the T polynomials
sourcepub fn u_polynomials(&self) -> &Vec<MultilinearWitness<'a, PW>>
pub fn u_polynomials(&self) -> &Vec<MultilinearWitness<'a, PW>>
Witnesses to the U polynomials
source§impl<'a, PW: PackedField> MsetcheckWitness<'a, PW>
impl<'a, PW: PackedField> MsetcheckWitness<'a, PW>
sourcepub fn new(
t_polynomials: impl IntoIterator<Item = MultilinearWitness<'a, PW>>,
u_polynomials: impl IntoIterator<Item = MultilinearWitness<'a, PW>>,
) -> Result<Self, Error>
pub fn new( t_polynomials: impl IntoIterator<Item = MultilinearWitness<'a, PW>>, u_polynomials: impl IntoIterator<Item = MultilinearWitness<'a, PW>>, ) -> Result<Self, Error>
Witness constructor
sourcepub fn dimensions(&self) -> usize
pub fn dimensions(&self) -> usize
Dimensions of the T/U relations.
Trait Implementations§
Auto Trait Implementations§
impl<'a, PW> Freeze for MsetcheckWitness<'a, PW>
impl<'a, PW> !RefUnwindSafe for MsetcheckWitness<'a, PW>
impl<'a, PW> Send for MsetcheckWitness<'a, PW>
impl<'a, PW> Sync for MsetcheckWitness<'a, PW>
impl<'a, PW> Unpin for MsetcheckWitness<'a, PW>
impl<'a, PW> !UnwindSafe for MsetcheckWitness<'a, PW>
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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