pub enum MultilinearPolyOracle<F: Field> {
    Transparent {
        id: OracleId,
        inner: TransparentPolyOracle<F>,
        name: Option<String>,
    },
    Committed {
        id: CommittedId,
        oracle_id: OracleId,
        n_vars: usize,
        tower_level: usize,
        name: Option<String>,
    },
    Repeating {
        id: OracleId,
        inner: Box<MultilinearPolyOracle<F>>,
        log_count: usize,
        name: Option<String>,
    },
    Interleaved {
        id: OracleId,
        poly0: Box<MultilinearPolyOracle<F>>,
        poly1: Box<MultilinearPolyOracle<F>>,
        name: Option<String>,
    },
    Merged {
        id: OracleId,
        poly0: Box<MultilinearPolyOracle<F>>,
        poly1: Box<MultilinearPolyOracle<F>>,
        name: Option<String>,
    },
    Projected {
        id: OracleId,
        projected: Projected<F>,
        name: Option<String>,
    },
    Shifted {
        id: OracleId,
        shifted: Shifted<F>,
        name: Option<String>,
    },
    Packed {
        id: OracleId,
        packed: Packed<F>,
        name: Option<String>,
    },
    LinearCombination {
        id: OracleId,
        linear_combination: LinearCombination<F>,
        name: Option<String>,
    },
    ZeroPadded {
        id: OracleId,
        inner: Box<MultilinearPolyOracle<F>>,
        n_vars: usize,
        name: Option<String>,
    },
}
Expand description

A multilinear polynomial oracle in the polynomial IOP model.

In the multilinear polynomial IOP model, a prover sends multilinear polynomials to an oracle, and the verifier may at the end of the protocol query their evaluations at chosen points. An oracle is a verifier and prover’s shared view of a polynomial that can be queried for evaluations by the verifier.

There are three fundamental categories of oracles:

  1. Transparent oracles. These are multilinear polynomials with a succinct description and evaluation algorithm that are known to the verifier. When the verifier queries a transparent oracle, it evaluates the polynomial itself.
  2. Committed oracles. These are polynomials actually sent by the prover. When the polynomial IOP is compiled to an interactive protocol, these polynomial are committed with a polynomial commitment scheme.
  3. Virtual oracles. A virtual multilinear oracle is not actually sent by the prover, but instead admits an interactive reduction for evaluation queries to evaluation queries to other oracles. This is formalized in DP23 Section 4.

Variants§

§

Transparent

§

Committed

Fields

§oracle_id: OracleId
§n_vars: usize
§tower_level: usize
§

Repeating

Fields

§log_count: usize
§

Interleaved

§

Merged

§

Projected

Fields

§projected: Projected<F>
§

Shifted

Fields

§shifted: Shifted<F>
§

Packed

Fields

§packed: Packed<F>
§

LinearCombination

Fields

§linear_combination: LinearCombination<F>
§

ZeroPadded

Fields

§n_vars: usize

Implementations§

source§

impl<F: Field> MultilinearPolyOracle<F>

source

pub fn id(&self) -> OracleId

source

pub fn label(&self) -> String

source

pub fn name(&self) -> Option<&str>

source

pub fn n_vars(&self) -> usize

source

pub fn binary_tower_level(&self) -> usize

Maximum tower level of the oracle’s values over the boolean hypercube.

source

pub fn into_composite(self) -> CompositePolyOracle<F>

Trait Implementations§

source§

impl<F: Clone + Field> Clone for MultilinearPolyOracle<F>

source§

fn clone(&self) -> MultilinearPolyOracle<F>

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<F: Debug + Field> Debug for MultilinearPolyOracle<F>

source§

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

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

impl<F: PartialEq + Field> PartialEq for MultilinearPolyOracle<F>

source§

fn eq(&self, other: &MultilinearPolyOracle<F>) -> 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<F: Eq + Field> Eq for MultilinearPolyOracle<F>

source§

impl<F: Field> StructuralPartialEq for MultilinearPolyOracle<F>

Auto Trait Implementations§

§

impl<F> Freeze for MultilinearPolyOracle<F>
where <F as WithUnderlier>::Underlier: PackScalar<F> + UnderlierType + Sync + Send + Zeroable + NoUninit + Random + Copy + Clone + ConstantTimeEq + Eq + PartialEq + Default + Debug + Sized + 'static, F: WithUnderlier + Zeroable + InvertOrZero + Square + for<'a> MulAssign<&'a F> + for<'a> SubAssign<&'a F> + for<'a> AddAssign<&'a F> + MulAssign + SubAssign + AddAssign + for<'a> Product<&'a F> + for<'a> Sum<&'a F> + for<'a> Mul<&'a F, Output = F, Output = F> + for<'a> Sub<&'a F, Output = F, Output = F> + for<'a> Add<&'a F, Output = F, Output = F> + Product + Sum + Mul + Sub + Add + Neg<Output = F> + Debug + Sync + Send + Default + Clone + Copy + Eq + PartialEq + 'static + Freeze,

§

impl<F> !RefUnwindSafe for MultilinearPolyOracle<F>

§

impl<F> Send for MultilinearPolyOracle<F>
where <F as WithUnderlier>::Underlier: PackScalar<F> + UnderlierType + Sync + Send + Zeroable + NoUninit + Random + Copy + Clone + ConstantTimeEq + Eq + PartialEq + Default + Debug + Sized + 'static, F: WithUnderlier + Zeroable + InvertOrZero + Square + for<'a> MulAssign<&'a F> + for<'a> SubAssign<&'a F> + for<'a> AddAssign<&'a F> + MulAssign + SubAssign + AddAssign + for<'a> Product<&'a F> + for<'a> Sum<&'a F> + for<'a> Mul<&'a F, Output = F, Output = F> + for<'a> Sub<&'a F, Output = F, Output = F> + for<'a> Add<&'a F, Output = F, Output = F> + Product + Sum + Mul + Sub + Add + Neg<Output = F> + Debug + Sync + Send + Default + Clone + Copy + Eq + PartialEq + 'static,

§

impl<F> Sync for MultilinearPolyOracle<F>
where <F as WithUnderlier>::Underlier: PackScalar<F> + UnderlierType + Sync + Send + Zeroable + NoUninit + Random + Copy + Clone + ConstantTimeEq + Eq + PartialEq + Default + Debug + Sized + 'static, F: WithUnderlier + Zeroable + InvertOrZero + Square + for<'a> MulAssign<&'a F> + for<'a> SubAssign<&'a F> + for<'a> AddAssign<&'a F> + MulAssign + SubAssign + AddAssign + for<'a> Product<&'a F> + for<'a> Sum<&'a F> + for<'a> Mul<&'a F, Output = F, Output = F> + for<'a> Sub<&'a F, Output = F, Output = F> + for<'a> Add<&'a F, Output = F, Output = F> + Product + Sum + Mul + Sub + Add + Neg<Output = F> + Debug + Sync + Send + Default + Clone + Copy + Eq + PartialEq + 'static,

§

impl<F> Unpin for MultilinearPolyOracle<F>
where <F as WithUnderlier>::Underlier: PackScalar<F> + UnderlierType + Sync + Send + Zeroable + NoUninit + Random + Copy + Clone + ConstantTimeEq + Eq + PartialEq + Default + Debug + Sized + 'static, F: WithUnderlier + Zeroable + InvertOrZero + Square + for<'a> MulAssign<&'a F> + for<'a> SubAssign<&'a F> + for<'a> AddAssign<&'a F> + MulAssign + SubAssign + AddAssign + for<'a> Product<&'a F> + for<'a> Sum<&'a F> + for<'a> Mul<&'a F, Output = F, Output = F> + for<'a> Sub<&'a F, Output = F, Output = F> + for<'a> Add<&'a F, Output = F, Output = F> + Product + Sum + Mul + Sub + Add + Neg<Output = F> + Debug + Sync + Send + Default + Clone + Copy + Eq + PartialEq + 'static + Unpin,

§

impl<F> !UnwindSafe for MultilinearPolyOracle<F>

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.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

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> ToOwned for T
where 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, U> TryFrom<U> for T
where 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 T
where 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 T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more