pub struct MemoizedData<'a, P: PackedField, Backend: ComputationBackend> { /* private fields */ }
Implementations§
Source§impl<'a, P: PackedField, Backend: ComputationBackend> MemoizedData<'a, P, Backend>
impl<'a, P: PackedField, Backend: ComputationBackend> MemoizedData<'a, P, Backend>
pub fn new() -> Self
pub fn full_query( &mut self, eval_point: &[P::Scalar], backend: &Backend, ) -> Result<&MultilinearQuery<P, Backend::Vec<P>>, Error>
Sourcepub fn full_query_readonly(
&self,
eval_point: &[P::Scalar],
) -> Option<&MultilinearQuery<P, Backend::Vec<P>>>
pub fn full_query_readonly( &self, eval_point: &[P::Scalar], ) -> Option<&MultilinearQuery<P, Backend::Vec<P>>>
Finds a MultilinearQuery
corresponding to the given eval_point
.
pub fn memoize_query_par( &mut self, eval_points: &[&[P::Scalar]], backend: &Backend, ) -> Result<(), Error>
pub fn memoize_partial_evals(
&mut self,
metas: &[ProjectedBivariateMeta],
projected_bivariate_claims: &[EvalcheckMultilinearClaim<P::Scalar>],
oracles: &mut MultilinearOracleSet<P::Scalar>,
witness_index: &MultilinearExtensionIndex<'a, P>,
)where
P::Scalar: TowerField,
pub fn partial_eval( &self, id: OracleId, eval_point: &[P::Scalar], ) -> Option<&MultilinearWitness<'a, P>>
Auto Trait Implementations§
impl<'a, P, Backend> Freeze for MemoizedData<'a, P, Backend>
impl<'a, P, Backend> !RefUnwindSafe for MemoizedData<'a, P, Backend>
impl<'a, P, Backend> Send for MemoizedData<'a, P, Backend>
impl<'a, P, Backend> Sync for MemoizedData<'a, P, Backend>
impl<'a, P, Backend> Unpin for MemoizedData<'a, P, Backend>
impl<'a, P, Backend> !UnwindSafe for MemoizedData<'a, P, Backend>
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