pub enum AdviceInjector {
    MerkleNode,
    MerkleMerge,
    DivResultU64,
    MapValue,
    Memory(u32, u32),
    Ext2Inv,
    Ext2INTT,
}
Expand description

TODO: add docs

Variants§

§

MerkleNode

Pushes a node of the Merkle tree specified by the values on the top of the operand stack onto the advice stack. The operand stack is expected to be arranged as follows (from the top):

  • depth of the node, 1 element
  • index of the node, 1 element
  • root of the tree, 4 elements
§

MerkleMerge

Creates a new Merkle tree in the advice provider by combining Merkle trees with the specified roots. The root of the new tree is defined as Hash(left_root, right_root).

The operand stack is expected to be arranged as follows:

  • root of the right tree, 4 elements.
  • root of the left tree, 4 elements.

After the operation, both the original trees and the new tree remains in the advice provider (i.e., the input trees are not removed).

§

DivResultU64

Pushes the result of u64 division (both the quotient and the remainder) onto the advice stack. The operand stack is expected to be arranged as follows (from the top):

  • divisor split into two 32-bit elements
  • dividend split into two 32-bit elements

The result is pushed onto the advice stack as follows: first the remainder is pushed, then the quotient.

§

MapValue

Pushes a list of field elements onto the advice stack. The list is looked up in the key-value map maintained by the advice provider using the top 4 elements of the operand stack as key.

§

Memory(u32, u32)

Inserts a list of words that are read from VM memory into the advice map under the key specified by the word at the top of the operand stack.

The first internal u32 specifies the starting address of the memory region, and the second specifies the number of words to be read.

§

Ext2Inv

Given an element of quadratic extension field, it computes multiplicative inverse and push the result into the advice stack.

§

Ext2INTT

Given ( power of 2 many ) evaluations of a polynomial over some specified domain, this routine interpolates ( using inverse NTT ) the evaluations into a polynomial in coefficient form and pushes the result into the advice stack.

Trait Implementations§

source§

impl Clone for AdviceInjector

source§

fn clone(&self) -> AdviceInjector

Returns a copy 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 Debug for AdviceInjector

source§

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

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

impl Display for AdviceInjector

source§

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

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

impl PartialEq<AdviceInjector> for AdviceInjector

source§

fn eq(&self, other: &AdviceInjector) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for AdviceInjector

source§

impl Eq for AdviceInjector

source§

impl StructuralEq for AdviceInjector

source§

impl StructuralPartialEq for AdviceInjector

Auto Trait Implementations§

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,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

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> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · 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.
const: unstable · source§

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

Performs the conversion.