Struct Linearization

Source
pub struct Linearization<E, Column> {
    pub constant_term: E,
    pub index_terms: Vec<(Column, E)>,
}
Expand description

A “linearization”, which is linear combination with E coefficients of columns.

Fields§

§constant_term: E§index_terms: Vec<(Column, E)>

Implementations§

Source§

impl<A, Column: Copy> Linearization<A, Column>

Source

pub fn map<B, F: Fn(&A) -> B>(&self, f: F) -> Linearization<B, Column>

Apply a function to all the coefficients in the linearization.

Source§

impl<F: FftField, Column: PartialEq + Copy, ChallengeTerm: Copy> Linearization<Expr<ConstantExpr<F, ChallengeTerm>, Column>, Column>

Source

pub fn evaluate_constants<'a, Challenge: Index<ChallengeTerm, Output = F>, Environment: ColumnEnvironment<'a, F, ChallengeTerm, Challenge, Column = Column>>( &self, env: &Environment, ) -> Linearization<Expr<F, Column>, Column>

Evaluate the constants in a linearization with ConstantExpr<F> coefficients down to literal field elements.

Source§

impl<F: FftField, Column: Copy + Debug, ChallengeTerm: Copy> Linearization<Vec<PolishToken<F, Column, ChallengeTerm>>, Column>

Source

pub fn to_polynomial<'a, Challenge: Index<ChallengeTerm, Output = F>, ColEvaluations: ColumnEvaluations<F, Column = Column>, Environment: ColumnEnvironment<'a, F, ChallengeTerm, Challenge, Column = Column>>( &self, env: &Environment, pt: F, evals: &ColEvaluations, ) -> (F, Evaluations<F, D<F>>)

Given a linearization and an environment, compute the polynomial corresponding to the linearization, in evaluation form.

Source§

impl<F: FftField, Column: Debug + PartialEq + Copy, ChallengeTerm: Copy> Linearization<Expr<ConstantExpr<F, ChallengeTerm>, Column>, Column>

Source

pub fn to_polynomial<'a, Challenge: Index<ChallengeTerm, Output = F>, ColEvaluations: ColumnEvaluations<F, Column = Column>, Environment: ColumnEnvironment<'a, F, ChallengeTerm, Challenge, Column = Column>>( &self, env: &Environment, pt: F, evals: &ColEvaluations, ) -> (F, DensePolynomial<F>)

Given a linearization and an environment, compute the polynomial corresponding to the linearization, in evaluation form.

Trait Implementations§

Source§

impl<E: Clone, Column: Clone> Clone for Linearization<E, Column>

Source§

fn clone(&self) -> Linearization<E, Column>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<E: Debug, Column: Debug> Debug for Linearization<E, Column>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<E: Default, Column> Default for Linearization<E, Column>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'de, E, Column> Deserialize<'de> for Linearization<E, Column>
where E: Deserialize<'de>, Column: Deserialize<'de>,

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<E, Column> Serialize for Linearization<E, Column>
where E: Serialize, Column: Serialize,

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl<E, Column> Freeze for Linearization<E, Column>
where E: Freeze,

§

impl<E, Column> RefUnwindSafe for Linearization<E, Column>
where E: RefUnwindSafe, Column: RefUnwindSafe,

§

impl<E, Column> Send for Linearization<E, Column>
where E: Send, Column: Send,

§

impl<E, Column> Sync for Linearization<E, Column>
where E: Sync, Column: Sync,

§

impl<E, Column> Unpin for Linearization<E, Column>
where E: Unpin, Column: Unpin,

§

impl<E, Column> UnwindSafe for Linearization<E, Column>
where E: UnwindSafe, Column: 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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,