Struct snarkvm_algorithms::snark::groth16::KeypairAssembly [−][src]
This is our assembly structure that we'll use to synthesize the circuit into a QAP.
Fields
num_inputs: usize
num_aux: usize
at: Vec<Vec<(E::Fr, Index)>>
bt: Vec<Vec<(E::Fr, Index)>>
ct: Vec<Vec<(E::Fr, Index)>>
Trait Implementations
impl<E: PairingEngine> CanonicalDeserialize for KeypairAssembly<E>
[src]
fn deserialize<R: Read>(reader: &mut R) -> Result<Self, SerializationError>
[src]
fn deserialize_uncompressed<R: Read>(
reader: &mut R
) -> Result<Self, SerializationError>
[src]
reader: &mut R
) -> Result<Self, SerializationError>
impl<E: PairingEngine> CanonicalSerialize for KeypairAssembly<E>
[src]
fn serialize<W: Write>(&self, writer: &mut W) -> Result<(), SerializationError>
[src]
fn serialized_size(&self) -> usize
[src]
fn serialize_uncompressed<W: Write>(
&self,
writer: &mut W
) -> Result<(), SerializationError>
[src]
&self,
writer: &mut W
) -> Result<(), SerializationError>
fn uncompressed_size(&self) -> usize
[src]
impl<E: Clone + PairingEngine> Clone for KeypairAssembly<E> where
E::Fr: Clone,
E::Fr: Clone,
E::Fr: Clone,
[src]
E::Fr: Clone,
E::Fr: Clone,
E::Fr: Clone,
fn clone(&self) -> KeypairAssembly<E>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<E: PairingEngine> ConstraintSystem<<E as PairingEngine>::Fr> for KeypairAssembly<E>
[src]
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) -> Result<Variable, SynthesisError> where
F: FnOnce() -> Result<E::Fr, SynthesisError>,
A: FnOnce() -> AR,
AR: AsRef<str>,
[src]
F: FnOnce() -> Result<E::Fr, SynthesisError>,
A: FnOnce() -> AR,
AR: AsRef<str>,
fn alloc_input<F, A, AR>(
&mut self,
_: A,
_: F
) -> Result<Variable, SynthesisError> where
F: FnOnce() -> Result<E::Fr, SynthesisError>,
A: FnOnce() -> AR,
AR: AsRef<str>,
[src]
&mut self,
_: A,
_: F
) -> Result<Variable, SynthesisError> where
F: FnOnce() -> Result<E::Fr, SynthesisError>,
A: FnOnce() -> AR,
AR: AsRef<str>,
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]
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>,
fn push_namespace<NR, N>(&mut self, _: N) where
NR: AsRef<str>,
N: FnOnce() -> NR,
[src]
NR: AsRef<str>,
N: FnOnce() -> NR,
fn pop_namespace(&mut self)
[src]
fn get_root(&mut self) -> &mut Self::Root
[src]
fn num_constraints(&self) -> usize
[src]
pub fn one() -> Variable
[src]
pub fn ns<NR, N>(&mut self, name_fn: N) -> Namespace<'_, F, Self::Root> where
NR: AsRef<str>,
N: FnOnce() -> NR,
[src]
NR: AsRef<str>,
N: FnOnce() -> NR,
impl<E: Debug + PairingEngine> Debug for KeypairAssembly<E> where
E::Fr: Debug,
E::Fr: Debug,
E::Fr: Debug,
[src]
E::Fr: Debug,
E::Fr: Debug,
E::Fr: Debug,
Auto Trait Implementations
impl<E> RefUnwindSafe for KeypairAssembly<E> where
<E as PairingEngine>::Fr: RefUnwindSafe,
[src]
<E as PairingEngine>::Fr: RefUnwindSafe,
impl<E> Send for KeypairAssembly<E>
[src]
impl<E> Sync for KeypairAssembly<E>
[src]
impl<E> Unpin for KeypairAssembly<E> where
<E as PairingEngine>::Fr: Unpin,
[src]
<E as PairingEngine>::Fr: Unpin,
impl<E> UnwindSafe for KeypairAssembly<E> where
<E as PairingEngine>::Fr: UnwindSafe,
[src]
<E as PairingEngine>::Fr: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Pointable for T
pub const ALIGN: usize
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize
pub unsafe fn deref<'a>(ptr: usize) -> &'a T
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn drop(ptr: usize)
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,