[][src]Struct bellperson::gadgets::num::AllocatedNum

pub struct AllocatedNum<E: ScalarEngine> { /* fields omitted */ }

Implementations

impl<E: ScalarEngine> AllocatedNum<E>[src]

pub fn alloc<CS, F>(cs: CS, value: F) -> Result<Self, SynthesisError> where
    CS: ConstraintSystem<E>,
    F: FnOnce() -> Result<E::Fr, SynthesisError>, 
[src]

pub fn inputize<CS>(&self, cs: CS) -> Result<(), SynthesisError> where
    CS: ConstraintSystem<E>, 
[src]

pub fn to_bits_le_strict<CS>(
    &self,
    cs: CS
) -> Result<Vec<Boolean>, SynthesisError> where
    CS: ConstraintSystem<E>, 
[src]

Deconstructs this allocated number into its boolean representation in little-endian bit order, requiring that the representation strictly exists "in the field" (i.e., a congruency is not allowed.)

pub fn to_bits_le<CS>(&self, cs: CS) -> Result<Vec<Boolean>, SynthesisError> where
    CS: ConstraintSystem<E>, 
[src]

Convert the allocated number into its little-endian representation. Note that this does not strongly enforce that the commitment is "in the field."

pub fn mul<CS>(&self, cs: CS, other: &Self) -> Result<Self, SynthesisError> where
    CS: ConstraintSystem<E>, 
[src]

pub fn square<CS>(&self, cs: CS) -> Result<Self, SynthesisError> where
    CS: ConstraintSystem<E>, 
[src]

pub fn assert_nonzero<CS>(&self, cs: CS) -> Result<(), SynthesisError> where
    CS: ConstraintSystem<E>, 
[src]

pub fn conditionally_reverse<CS>(
    cs: CS,
    a: &Self,
    b: &Self,
    condition: &Boolean
) -> Result<(Self, Self), SynthesisError> where
    CS: ConstraintSystem<E>, 
[src]

Takes two allocated numbers (a, b) and returns (b, a) if the condition is true, and (a, b) otherwise.

pub fn get_value(&self) -> Option<E::Fr>[src]

pub fn get_variable(&self) -> Variable[src]

Trait Implementations

impl<E: ScalarEngine> Clone for AllocatedNum<E>[src]

impl<E: ScalarEngine> From<AllocatedNum<E>> for Num<E>[src]

Auto Trait Implementations

impl<E> RefUnwindSafe for AllocatedNum<E> where
    <E as ScalarEngine>::Fr: RefUnwindSafe

impl<E> Send for AllocatedNum<E> where
    <E as ScalarEngine>::Fr: Send

impl<E> Sync for AllocatedNum<E> where
    <E as ScalarEngine>::Fr: Sync

impl<E> Unpin for AllocatedNum<E> where
    <E as ScalarEngine>::Fr: Unpin

impl<E> UnwindSafe for AllocatedNum<E> where
    <E as ScalarEngine>::Fr: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,