pub struct TransparentPolyOracle<F: Field> { /* private fields */ }
Expand description
A transparent multilinear polynomial oracle.
See the MultilinearPolyOracle
documentation for context.
Implementations§
source§impl<F: Field> TransparentPolyOracle<F>
impl<F: Field> TransparentPolyOracle<F>
pub fn poly(&self) -> &Arc<dyn MultivariatePoly<F>>
source§impl<F: Field> TransparentPolyOracle<F>
impl<F: Field> TransparentPolyOracle<F>
sourcepub fn binary_tower_level(&self) -> usize
pub fn binary_tower_level(&self) -> usize
Maximum tower level of the oracle’s values over the boolean hypercube.
Trait Implementations§
source§impl<F: Clone + Field> Clone for TransparentPolyOracle<F>
impl<F: Clone + Field> Clone for TransparentPolyOracle<F>
source§fn clone(&self) -> TransparentPolyOracle<F>
fn clone(&self) -> TransparentPolyOracle<F>
Returns a copy of the value. Read more
1.6.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<F: Field> PartialEq for TransparentPolyOracle<F>
impl<F: Field> PartialEq for TransparentPolyOracle<F>
impl<F: Field> Eq for TransparentPolyOracle<F>
Auto Trait Implementations§
impl<F> Freeze for TransparentPolyOracle<F>
impl<F> !RefUnwindSafe for TransparentPolyOracle<F>
impl<F> Send for TransparentPolyOracle<F>
impl<F> Sync for TransparentPolyOracle<F>
impl<F> Unpin for TransparentPolyOracle<F>
impl<F> !UnwindSafe for TransparentPolyOracle<F>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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