pub trait Representation<F: PseudoField> {
    fn size(&self) -> usize;
fn get(&self, row: usize, column: usize) -> F; fn diagonal(&self, row: usize) -> F { ... }
fn dimension(&self) -> usize { ... } }

Required methods

The size $N$ of the APH representation.

Returns the value at the given row and column.

Panics

Panics if the access is out-of-bounds.

Provided methods

Returns the value at the diagonal of the given row.

The dimension of the generator matrix.

Implementors