pub struct MultilinearOracleSet<F: TowerField> { /* private fields */ }
Expand description

An ordered set of multilinear polynomial oracles.

The multilinear polynomial oracles form a directed acyclic graph, where each multilinear oracle is either transparent, committed, or derived from one or more others. Each oracle is assigned a unique OracleId.

The oracle set also tracks the committed polynomial in batches where each batch is committed together with a polynomial commitment scheme.

Implementations§

source§

impl<F: TowerField> MultilinearOracleSet<F>

source

pub fn new() -> Self

source

pub fn add(&mut self) -> MultilinearOracleSetAddition<'_, F>

source

pub fn add_named<S: ToString>( &mut self, s: S ) -> MultilinearOracleSetAddition<'_, F>

source

pub fn is_valid_oracle_id(&self, id: OracleId) -> bool

source

pub fn add_transparent( &mut self, poly: impl MultivariatePoly<F> + 'static ) -> Result<OracleId, Error>

source

pub fn add_committed_batch( &mut self, n_vars: usize, tower_level: usize ) -> BatchId

source

pub fn add_committed(&mut self, batch_id: BatchId) -> OracleId

source

pub fn add_committed_multiple<const N: usize>( &mut self, batch_id: BatchId ) -> [OracleId; N]

source

pub fn add_repeating( &mut self, id: OracleId, log_count: usize ) -> Result<OracleId, Error>

source

pub fn add_interleaved( &mut self, id0: OracleId, id1: OracleId ) -> Result<OracleId, Error>

source

pub fn add_merged( &mut self, id0: OracleId, id1: OracleId ) -> Result<OracleId, Error>

source

pub fn add_shifted( &mut self, id: OracleId, offset: usize, block_bits: usize, variant: ShiftVariant ) -> Result<OracleId, Error>

source

pub fn add_packed( &mut self, id: OracleId, log_degree: usize ) -> Result<OracleId, Error>

source

pub fn add_projected( &mut self, id: OracleId, values: Vec<F>, variant: ProjectionVariant ) -> Result<OracleId, Error>

source

pub fn add_linear_combination( &mut self, n_vars: usize, inner: impl IntoIterator<Item = (OracleId, F)> ) -> Result<OracleId, Error>

source

pub fn add_linear_combination_with_offset( &mut self, n_vars: usize, offset: F, inner: impl IntoIterator<Item = (OracleId, F)> ) -> Result<OracleId, Error>

source

pub fn add_zero_padded( &mut self, id: OracleId, n_vars: usize ) -> Result<OracleId, Error>

source

pub fn committed_batch(&self, id: BatchId) -> CommittedBatch

source

pub fn committed_batches(&self) -> Vec<CommittedBatch>

source

pub fn committed_oracle_id(&self, id: CommittedId) -> OracleId

source

pub fn committed_oracle_ids( &self, batch_id: BatchId ) -> impl Iterator<Item = OracleId>

source

pub fn committed_oracle(&self, id: CommittedId) -> MultilinearPolyOracle<F>

source

pub fn oracle(&self, id: OracleId) -> MultilinearPolyOracle<F>

source

pub fn n_vars(&self, id: OracleId) -> usize

source

pub fn tower_level(&self, id: OracleId) -> usize

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

Trait Implementations§

source§

impl<F: Clone + TowerField> Clone for MultilinearOracleSet<F>

source§

fn clone(&self) -> MultilinearOracleSet<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 + TowerField> Debug for MultilinearOracleSet<F>

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<F> Freeze for MultilinearOracleSet<F>
where F: BinaryField<Output = F, Output = F, Output = F, Output = F, Output = F, Output = F, Output = F, Output = F, Output = F, Output = F> + ExtensionField<BinaryField1b> + MulAssign<BinaryField1b> + SubAssign<BinaryField1b> + AddAssign<BinaryField1b> + Mul<BinaryField1b> + Sub<BinaryField1b> + Add<BinaryField1b> + TryInto<BinaryField1b> + From<BinaryField1b> + Field + 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> + for<'a> Sub<&'a F> + for<'a> Add<&'a F> + Product + Sum + Mul + Sub + Add + Neg + Debug + Sync + Send + Default + Clone + Copy + Eq + PartialEq + 'static, <F as WithUnderlier>::Underlier: PackScalar<F> + UnderlierType + Sync + Send + Zeroable + NoUninit + Random + Copy + Clone + ConstantTimeEq + Eq + PartialEq + Default + Debug + Sized + 'static,

§

impl<F> !RefUnwindSafe for MultilinearOracleSet<F>

§

impl<F> Send for MultilinearOracleSet<F>
where F: BinaryField<Output = F, Output = F, Output = F, Output = F, Output = F, Output = F, Output = F, Output = F, Output = F, Output = F> + ExtensionField<BinaryField1b> + MulAssign<BinaryField1b> + SubAssign<BinaryField1b> + AddAssign<BinaryField1b> + Mul<BinaryField1b> + Sub<BinaryField1b> + Add<BinaryField1b> + TryInto<BinaryField1b> + From<BinaryField1b> + Field + 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> + for<'a> Sub<&'a F> + for<'a> Add<&'a F> + Product + Sum + Mul + Sub + Add + Neg + Debug + Sync + Send + Default + Clone + Copy + Eq + PartialEq + 'static, <F as WithUnderlier>::Underlier: PackScalar<F> + UnderlierType + Sync + Send + Zeroable + NoUninit + Random + Copy + Clone + ConstantTimeEq + Eq + PartialEq + Default + Debug + Sized + 'static,

§

impl<F> Sync for MultilinearOracleSet<F>
where F: BinaryField<Output = F, Output = F, Output = F, Output = F, Output = F, Output = F, Output = F, Output = F, Output = F, Output = F> + ExtensionField<BinaryField1b> + MulAssign<BinaryField1b> + SubAssign<BinaryField1b> + AddAssign<BinaryField1b> + Mul<BinaryField1b> + Sub<BinaryField1b> + Add<BinaryField1b> + TryInto<BinaryField1b> + From<BinaryField1b> + Field + 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> + for<'a> Sub<&'a F> + for<'a> Add<&'a F> + Product + Sum + Mul + Sub + Add + Neg + Debug + Sync + Send + Default + Clone + Copy + Eq + PartialEq + 'static, <F as WithUnderlier>::Underlier: PackScalar<F> + UnderlierType + Sync + Send + Zeroable + NoUninit + Random + Copy + Clone + ConstantTimeEq + Eq + PartialEq + Default + Debug + Sized + 'static,

§

impl<F> Unpin for MultilinearOracleSet<F>
where F: BinaryField<Output = F, Output = F, Output = F, Output = F, Output = F, Output = F, Output = F, Output = F, Output = F, Output = F> + ExtensionField<BinaryField1b> + MulAssign<BinaryField1b> + SubAssign<BinaryField1b> + AddAssign<BinaryField1b> + Mul<BinaryField1b> + Sub<BinaryField1b> + Add<BinaryField1b> + TryInto<BinaryField1b> + From<BinaryField1b> + Field + 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> + for<'a> Sub<&'a F> + for<'a> Add<&'a F> + Product + Sum + Mul + Sub + Add + Neg + Debug + Sync + Send + Default + Clone + Copy + Eq + PartialEq + 'static + Unpin, <F as WithUnderlier>::Underlier: PackScalar<F> + UnderlierType + Sync + Send + Zeroable + NoUninit + Random + Copy + Clone + ConstantTimeEq + Eq + PartialEq + Default + Debug + Sized + 'static,

§

impl<F> !UnwindSafe for MultilinearOracleSet<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