pub struct IntegratedFoldingExpr<C: FoldingConfig> { /* private fields */ }
Expand description
A value of type IntegratedFoldingExpr is the result of the split of a
polynomial in its monomials of degree 0
, 1
and 2
.
It is used to compute the error terms. For an example, have a look at the
top level documentation.
Implementations§
Source§impl<C: FoldingConfig> IntegratedFoldingExpr<C>
impl<C: FoldingConfig> IntegratedFoldingExpr<C>
Sourcepub fn final_expression(self) -> FoldingCompatibleExpr<C>
pub fn final_expression(self) -> FoldingCompatibleExpr<C>
Combines constraints into single expression
Trait Implementations§
Source§impl<C> Clone for IntegratedFoldingExpr<C>where
C: FoldingConfig,
impl<C> Clone for IntegratedFoldingExpr<C>where
C: FoldingConfig,
Source§impl<C> Debug for IntegratedFoldingExpr<C>where
C: FoldingConfig,
impl<C> Debug for IntegratedFoldingExpr<C>where
C: FoldingConfig,
Source§impl<C> Default for IntegratedFoldingExpr<C>where
C: FoldingConfig,
impl<C> Default for IntegratedFoldingExpr<C>where
C: FoldingConfig,
Auto Trait Implementations§
impl<C> Freeze for IntegratedFoldingExpr<C>
impl<C> RefUnwindSafe for IntegratedFoldingExpr<C>where
<<C as FoldingConfig>::Curve as AffineRepr>::ScalarField: RefUnwindSafe,
<C as FoldingConfig>::Challenge: RefUnwindSafe,
<C as FoldingConfig>::Selector: RefUnwindSafe,
<C as FoldingConfig>::Column: RefUnwindSafe,
impl<C> Send for IntegratedFoldingExpr<C>where
<C as FoldingConfig>::Challenge: Send,
<C as FoldingConfig>::Selector: Send,
<C as FoldingConfig>::Column: Send,
impl<C> Sync for IntegratedFoldingExpr<C>where
<C as FoldingConfig>::Challenge: Sync,
<C as FoldingConfig>::Selector: Sync,
<C as FoldingConfig>::Column: Sync,
impl<C> Unpin for IntegratedFoldingExpr<C>where
<<C as FoldingConfig>::Curve as AffineRepr>::ScalarField: Unpin,
<C as FoldingConfig>::Challenge: Unpin,
<C as FoldingConfig>::Selector: Unpin,
<C as FoldingConfig>::Column: Unpin,
impl<C> UnwindSafe for IntegratedFoldingExpr<C>where
<<C as FoldingConfig>::Curve as AffineRepr>::ScalarField: UnwindSafe,
<C as FoldingConfig>::Challenge: UnwindSafe,
<C as FoldingConfig>::Selector: UnwindSafe,
<C as FoldingConfig>::Column: 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