pub struct MultiDegreeSumcheckGroup<C: SetConfig> { /* private fields */ }Expand description
A single degree group for the multi-degree sumcheck: (degree, mles, comb_fn).
Implementations§
Source§impl<C: SetConfig> MultiDegreeSumcheckGroup<C>
impl<C: SetConfig> MultiDegreeSumcheckGroup<C>
pub fn new( degree: usize, poly: Vec<DenseMultilinearExtension<C::Element>>, comb_fn: CombFn<C::Element>, ) -> Self
pub fn new_with_fast_path( degree: usize, poly: Vec<DenseMultilinearExtension<C::Element>>, comb_fn: CombFn<C::Element>, round_1_fast: Box<dyn Round1FastPath<C>>, ) -> Self
Auto Trait Implementations§
impl<C> Freeze for MultiDegreeSumcheckGroup<C>
impl<C> !RefUnwindSafe for MultiDegreeSumcheckGroup<C>
impl<C> Send for MultiDegreeSumcheckGroup<C>
impl<C> Sync for MultiDegreeSumcheckGroup<C>
impl<C> Unpin for MultiDegreeSumcheckGroup<C>where
<C as SetConfig>::Element: Unpin,
impl<C> UnsafeUnpin for MultiDegreeSumcheckGroup<C>
impl<C> !UnwindSafe for MultiDegreeSumcheckGroup<C>
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
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