Struct ark_marlin::ahp::indexer::Index[][src]

pub struct Index<F: PrimeField> {
    pub index_info: IndexInfo<F>,
    pub a: Matrix<F>,
    pub b: Matrix<F>,
    pub c: Matrix<F>,
    pub a_star_arith: MatrixArithmetization<F>,
    pub b_star_arith: MatrixArithmetization<F>,
    pub c_star_arith: MatrixArithmetization<F>,
}

The indexed version of the constraint system. This struct contains three kinds of objects:

  1. index_info is information about the index, such as the size of the public input
  2. {a,b,c} are the matrices defining the R1CS instance
  3. {a,b,c}_star_arith are structs containing information about A^, B^, and C^*, which are matrices defined as M^*(i, j) = M(j, i) * u_H(j, j).

Fields

index_info: IndexInfo<F>

Information about the index.

a: Matrix<F>

The A matrix for the R1CS instance

b: Matrix<F>

The B matrix for the R1CS instance

c: Matrix<F>

The C matrix for the R1CS instance

a_star_arith: MatrixArithmetization<F>

Arithmetization of the A* matrix.

b_star_arith: MatrixArithmetization<F>

Arithmetization of the B* matrix.

c_star_arith: MatrixArithmetization<F>

Arithmetization of the C* matrix.

Implementations

impl<F: PrimeField> Index<F>[src]

pub fn max_degree(&self) -> usize[src]

The maximum degree required to represent polynomials of this index.

pub fn iter(&self) -> impl Iterator<Item = &LabeledPolynomial<F>>[src]

Iterate over the indexed polynomials.

Trait Implementations

impl<F: PrimeField> CanonicalDeserialize for Index<F>[src]

impl<F: PrimeField> CanonicalSerialize for Index<F>[src]

impl<F: PrimeField> Clone for Index<F> where
    F: PrimeField
[src]

Auto Trait Implementations

impl<F> !RefUnwindSafe for Index<F>

impl<F> !Send for Index<F>

impl<F> !Sync for Index<F>

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

impl<F> UnwindSafe for Index<F> where
    F: RefUnwindSafe + 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> Instrument for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,