Struct Env

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

Source§

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> !Freeze for Env<G, Col, Chall, Sel, Str, I, W>

§

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 Str: Send, I: Send, W: Send, Col: Send, Chall: Send, Sel: 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 Str: Unpin, I: Unpin, W: Unpin, G: Unpin, Col: Unpin, Chall: Unpin, Sel: 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 Str: UnwindSafe, I: UnwindSafe, W: UnwindSafe, G: UnwindSafe, Col: UnwindSafe, Chall: UnwindSafe, Sel: UnwindSafe, <G as AffineRepr>::ScalarField: UnwindSafe,

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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 T
where 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

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 for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

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 T
where U: TryFrom<T>,

Source§

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 T
where V: MultiLane<T>,

§

fn vzip(self) -> V