pub struct KZGPreparedData<F: PrimeField> { /* private fields */ }Expand description
KZGPreparedData will create a polynomial to commit to by interpolating the dataset. Instead of the evaluations occuring at [0,1,…,n-1] they instead occur at [0,w,w^2,…w^n-1]. w is the n-th root of unity
Implementations§
Source§impl<F: PrimeField> KZGPreparedData<F>
impl<F: PrimeField> KZGPreparedData<F>
pub fn from_points_and_domain( points: Vec<F>, domain: GeneralEvaluationDomain<F>, ) -> Self
Trait Implementations§
Source§impl<F: Clone + PrimeField> Clone for KZGPreparedData<F>
impl<F: Clone + PrimeField> Clone for KZGPreparedData<F>
Source§fn clone(&self) -> KZGPreparedData<F>
fn clone(&self) -> KZGPreparedData<F>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<F: PartialEq + PrimeField> PartialEq for KZGPreparedData<F>
impl<F: PartialEq + PrimeField> PartialEq for KZGPreparedData<F>
Source§impl<F: PrimeField> VCPreparedData for KZGPreparedData<F>
impl<F: PrimeField> VCPreparedData for KZGPreparedData<F>
impl<F: PrimeField> StructuralPartialEq for KZGPreparedData<F>
Auto Trait Implementations§
impl<F> Freeze for KZGPreparedData<F>where
F: Freeze,
impl<F> RefUnwindSafe for KZGPreparedData<F>where
F: RefUnwindSafe,
impl<F> Send for KZGPreparedData<F>
impl<F> Sync for KZGPreparedData<F>
impl<F> Unpin for KZGPreparedData<F>where
F: Unpin,
impl<F> UnwindSafe for KZGPreparedData<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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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