pub struct GkrArtifact<F> {
pub ood_point: Vec<F>,
pub claims_to_verify_by_instance: Vec<Vec<F>>,
pub n_variables_by_instance: Vec<usize>,
}
Expand description
Values of interest obtained from the execution of the GKR protocol.
Fields§
§ood_point: Vec<F>
Out-of-domain (OOD) point for evaluating columns in the input layer.
claims_to_verify_by_instance: Vec<Vec<F>>
The claimed evaluation at ood_point
for each column in the input layer of each instance.
n_variables_by_instance: Vec<usize>
The number of variables that interpolate the input layer of each instance.
Auto Trait Implementations§
impl<F> Freeze for GkrArtifact<F>
impl<F> RefUnwindSafe for GkrArtifact<F>where
F: RefUnwindSafe,
impl<F> Send for GkrArtifact<F>where
F: Send,
impl<F> Sync for GkrArtifact<F>where
F: Sync,
impl<F> Unpin for GkrArtifact<F>where
F: Unpin,
impl<F> UnwindSafe for GkrArtifact<F>where
F: 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
§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