pub struct LassoWitness<'a, PW: PackedField, L: AsRef<[usize]>> { /* private fields */ }
Implementations§
source§impl<'a, PW: PackedField, L: AsRef<[usize]>> LassoWitness<'a, PW, L>
impl<'a, PW: PackedField, L: AsRef<[usize]>> LassoWitness<'a, PW, L>
pub fn t_polynomial(&self) -> &MultilinearWitness<'a, PW>
pub fn u_polynomials(&self) -> &Vec<MultilinearWitness<'a, PW>>
pub fn u_to_t_mappings(&self) -> &Vec<L>
source§impl<'a, PW: PackedField, L: AsRef<[usize]>> LassoWitness<'a, PW, L>
impl<'a, PW: PackedField, L: AsRef<[usize]>> LassoWitness<'a, PW, L>
pub fn new( t_polynomial: MultilinearWitness<'a, PW>, u_polynomials: Vec<MultilinearWitness<'a, PW>>, u_to_t_mappings: Vec<L>, ) -> Result<Self, Error>
Trait Implementations§
Auto Trait Implementations§
impl<'a, PW, L> Freeze for LassoWitness<'a, PW, L>
impl<'a, PW, L> !RefUnwindSafe for LassoWitness<'a, PW, L>
impl<'a, PW, L> Send for LassoWitness<'a, PW, L>where
L: Send,
impl<'a, PW, L> Sync for LassoWitness<'a, PW, L>where
L: Sync,
impl<'a, PW, L> Unpin for LassoWitness<'a, PW, L>where
L: Unpin,
impl<'a, PW, L> !UnwindSafe for LassoWitness<'a, PW, L>
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