Struct snarkvm_algorithms::snark::gm17::ProvingAssignment [−][src]
pub struct ProvingAssignment<E: PairingEngine> { /* fields omitted */ }
Implementations
impl<E: PairingEngine> ProvingAssignment<E>
[src]
impl<E: PairingEngine> ProvingAssignment<E>
[src]pub fn which_is_unsatisfied(&self) -> Option<usize>
[src]
Trait Implementations
impl<E: Clone + PairingEngine> Clone for ProvingAssignment<E> where
E::Fr: Clone,
E::Fr: Clone,
E::Fr: Clone,
E::Fr: Clone,
E::Fr: Clone,
E::Fr: Clone,
E::Fr: Clone,
E::Fr: Clone,
[src]
impl<E: Clone + PairingEngine> Clone for ProvingAssignment<E> where
E::Fr: Clone,
E::Fr: Clone,
E::Fr: Clone,
E::Fr: Clone,
E::Fr: Clone,
E::Fr: Clone,
E::Fr: Clone,
E::Fr: Clone,
[src]fn clone(&self) -> ProvingAssignment<E>
[src]
fn clone(&self) -> ProvingAssignment<E>
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl<E: PairingEngine> ConstraintSystem<<E as PairingEngine>::Fr> for ProvingAssignment<E>
[src]
impl<E: PairingEngine> ConstraintSystem<<E as PairingEngine>::Fr> for ProvingAssignment<E>
[src]type Root = Self
type Root = Self
Represents the type of the “root” of this constraint system so that nested namespaces can minimize indirection. Read more
fn alloc<F, A, AR>(&mut self, _: A, f: F) -> Result<Variable, SynthesisError> where
F: FnOnce() -> Result<E::Fr, SynthesisError>,
A: FnOnce() -> AR,
AR: AsRef<str>,
[src]
fn alloc<F, A, AR>(&mut self, _: A, f: F) -> Result<Variable, SynthesisError> where
F: FnOnce() -> Result<E::Fr, SynthesisError>,
A: FnOnce() -> AR,
AR: AsRef<str>,
[src]Allocate a private variable in the constraint system. The provided
function is used to determine the assignment of the variable. The
given annotation
function is invoked in testing contexts in order
to derive a unique name for this variable in the current namespace. Read more
fn alloc_input<F, A, AR>(
&mut self,
_: A,
f: F
) -> Result<Variable, SynthesisError> where
F: FnOnce() -> Result<E::Fr, SynthesisError>,
A: FnOnce() -> AR,
AR: AsRef<str>,
[src]
fn alloc_input<F, A, AR>(
&mut self,
_: A,
f: F
) -> Result<Variable, SynthesisError> where
F: FnOnce() -> Result<E::Fr, SynthesisError>,
A: FnOnce() -> AR,
AR: AsRef<str>,
[src]Allocate a public variable in the constraint system. The provided function is used to determine the assignment of the variable. Read more
fn enforce<A, AR, LA, LB, LC>(&mut self, _: A, a: LA, b: LB, c: LC) where
A: FnOnce() -> AR,
AR: AsRef<str>,
LA: FnOnce(LinearCombination<E::Fr>) -> LinearCombination<E::Fr>,
LB: FnOnce(LinearCombination<E::Fr>) -> LinearCombination<E::Fr>,
LC: FnOnce(LinearCombination<E::Fr>) -> LinearCombination<E::Fr>,
[src]
fn enforce<A, AR, LA, LB, LC>(&mut self, _: A, a: LA, b: LB, c: LC) where
A: FnOnce() -> AR,
AR: AsRef<str>,
LA: FnOnce(LinearCombination<E::Fr>) -> LinearCombination<E::Fr>,
LB: FnOnce(LinearCombination<E::Fr>) -> LinearCombination<E::Fr>,
LC: FnOnce(LinearCombination<E::Fr>) -> LinearCombination<E::Fr>,
[src]Enforce that A
* B
= C
. The annotation
function is invoked in
testing contexts in order to derive a unique name for the constraint
in the current namespace. Read more
fn push_namespace<NR, N>(&mut self, _: N) where
NR: AsRef<str>,
N: FnOnce() -> NR,
[src]
fn push_namespace<NR, N>(&mut self, _: N) where
NR: AsRef<str>,
N: FnOnce() -> NR,
[src]Create a new (sub)namespace and enter into it. Not intended
for downstream use; use namespace
instead. Read more
fn pop_namespace(&mut self)
[src]
fn pop_namespace(&mut self)
[src]Exit out of the existing namespace. Not intended for
downstream use; use namespace
instead. Read more
fn get_root(&mut self) -> &mut Self::Root
[src]
fn get_root(&mut self) -> &mut Self::Root
[src]Gets the “root” constraint system, bypassing the namespacing.
Not intended for downstream use; use namespace
instead. Read more
fn num_constraints(&self) -> usize
[src]
fn num_constraints(&self) -> usize
[src]Output the number of constraints in the system.
fn num_public_variables(&self) -> usize
[src]
fn num_public_variables(&self) -> usize
[src]Output the number of public input variables to the system.
fn num_private_variables(&self) -> usize
[src]
fn num_private_variables(&self) -> usize
[src]Output the number of private input variables to the system.
impl<E: Debug + PairingEngine> Debug for ProvingAssignment<E> where
E::Fr: Debug,
E::Fr: Debug,
E::Fr: Debug,
E::Fr: Debug,
E::Fr: Debug,
E::Fr: Debug,
E::Fr: Debug,
E::Fr: Debug,
[src]
impl<E: Debug + PairingEngine> Debug for ProvingAssignment<E> where
E::Fr: Debug,
E::Fr: Debug,
E::Fr: Debug,
E::Fr: Debug,
E::Fr: Debug,
E::Fr: Debug,
E::Fr: Debug,
E::Fr: Debug,
[src]impl<E: PartialEq + PairingEngine> PartialEq<ProvingAssignment<E>> for ProvingAssignment<E> where
E::Fr: PartialEq,
E::Fr: PartialEq,
E::Fr: PartialEq,
E::Fr: PartialEq,
E::Fr: PartialEq,
E::Fr: PartialEq,
E::Fr: PartialEq,
E::Fr: PartialEq,
[src]
impl<E: PartialEq + PairingEngine> PartialEq<ProvingAssignment<E>> for ProvingAssignment<E> where
E::Fr: PartialEq,
E::Fr: PartialEq,
E::Fr: PartialEq,
E::Fr: PartialEq,
E::Fr: PartialEq,
E::Fr: PartialEq,
E::Fr: PartialEq,
E::Fr: PartialEq,
[src]fn eq(&self, other: &ProvingAssignment<E>) -> bool
[src]
fn eq(&self, other: &ProvingAssignment<E>) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &ProvingAssignment<E>) -> bool
[src]
fn ne(&self, other: &ProvingAssignment<E>) -> bool
[src]This method tests for !=
.
impl<E: PairingEngine> StructuralPartialEq for ProvingAssignment<E>
[src]
Auto Trait Implementations
impl<E> RefUnwindSafe for ProvingAssignment<E> where
<E as PairingEngine>::Fr: RefUnwindSafe,
<E as PairingEngine>::Fr: RefUnwindSafe,
impl<E> Send for ProvingAssignment<E>
impl<E> Sync for ProvingAssignment<E>
impl<E> Unpin for ProvingAssignment<E> where
<E as PairingEngine>::Fr: Unpin,
<E as PairingEngine>::Fr: Unpin,
impl<E> UnwindSafe for ProvingAssignment<E> where
<E as PairingEngine>::Fr: RefUnwindSafe + UnwindSafe,
<E as PairingEngine>::Fr: RefUnwindSafe + UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Same<T> for T
impl<T> Same<T> for T
type Output = T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,