Struct ark_linear_sumcheck::ml_sumcheck::protocol::prover::ProverState[][src]

pub struct ProverState<F: Field> {
    pub randomness: Vec<F>,
    pub list_of_products: Vec<(F, Vec<usize>)>,
    pub flattened_ml_extensions: Vec<DenseMultilinearExtension<F>>,
    // some fields omitted
}

Prover State

Fields

randomness: Vec<F>

sampled randomness given by the verifier

list_of_products: Vec<(F, Vec<usize>)>

Stores the list of products that is meant to be added together. Each multiplicand is represented by the index in flattened_ml_extensions

flattened_ml_extensions: Vec<DenseMultilinearExtension<F>>

Stores a list of multilinear extensions in which self.list_of_products points to

Auto Trait Implementations

impl<F> RefUnwindSafe for ProverState<F> where
    F: RefUnwindSafe

impl<F> Send for ProverState<F>

impl<F> Sync for ProverState<F>

impl<F> Unpin for ProverState<F> where
    F: Unpin

impl<F> UnwindSafe for ProverState<F> where
    F: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,