pub struct Env<G, Col, Chall, Sel, Str, I, W>where
    G: CommitmentCurve,
    I: Instance<G> + Index<Chall, Output = G::ScalarField> + Clone,
    W: Witness<G> + Clone + Index<Col, Output = [G::ScalarField]> + Index<Sel, Output = [G::ScalarField]>,
    Col: Hash + Eq,{ /* private fields */ }
Expand description

A generic Index based environment

Trait Implementations§

source§

impl<G, Col, Chall, Sel, Str, I, W> FoldingEnv<<G as AffineRepr>::ScalarField, I, W, Col, Chall, Sel> for Env<G, Col, Chall, Sel, Str, I, W>where G: CommitmentCurve, I: Instance<G> + Index<Chall, Output = G::ScalarField> + Clone, W: Witness<G> + Clone + Index<Col, Output = [G::ScalarField]> + Index<Sel, Output = [G::ScalarField]>, Col: FoldingColumnTrait + Eq + Hash, Sel: Copy, Str: Clone + Index<Col, Output = [G::ScalarField]>,

§

type Structure = Str

Structure which could be storing useful information like selectors, etc.
source§

fn new( structure: &Self::Structure, instances: [&I; 2], witnesses: [&W; 2] ) -> Self

Creates a new environment storing the structure, instances and witnesses.
source§

fn challenge(&self, challenge: Chall, side: Side) -> G::ScalarField

Obtains a given challenge from the expanded instance for one side. The challenges are stored inside the instances structs.
source§

fn col( &self, col: Col, curr_or_next: CurrOrNext, side: Side ) -> &[G::ScalarField]

Returns the evaluations of a given column witness at omega or zeta*omega.
source§

fn selector(&self, s: &Sel, side: Side) -> &[G::ScalarField]

similar to Self::col, but folding may ask for a dynamic selector directly instead of just column that happens to be a selector

Auto Trait Implementations§

§

impl<G, Col, Chall, Sel, Str, I, W> !RefUnwindSafe for Env<G, Col, Chall, Sel, Str, I, W>

§

impl<G, Col, Chall, Sel, Str, I, W> Send for Env<G, Col, Chall, Sel, Str, I, W>where Chall: Send, Col: Send, I: Send, Sel: Send, Str: Send, W: Send,

§

impl<G, Col, Chall, Sel, Str, I, W> !Sync for Env<G, Col, Chall, Sel, Str, I, W>

§

impl<G, Col, Chall, Sel, Str, I, W> Unpin for Env<G, Col, Chall, Sel, Str, I, W>where Chall: Unpin, Col: Unpin, G: Unpin, I: Unpin, Sel: Unpin, Str: Unpin, W: Unpin, <G as AffineRepr>::ScalarField: Unpin,

§

impl<G, Col, Chall, Sel, Str, I, W> UnwindSafe for Env<G, Col, Chall, Sel, Str, I, W>where Chall: UnwindSafe, Col: UnwindSafe, G: UnwindSafe, I: UnwindSafe, Sel: UnwindSafe, Str: UnwindSafe, W: UnwindSafe, <G as AffineRepr>::ScalarField: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V