use crate::{
curves::Field,
gadgets::r1cs::{Index, LinearCombination, Variable},
};
use snarkvm_errors::gadgets::SynthesisError;
use std::marker::PhantomData;
pub trait ConstraintSystem<F: Field>: Sized {
type Root: ConstraintSystem<F>;
fn one() -> Variable {
Variable::new_unchecked(Index::Input(0))
}
fn alloc<FN, A, AR>(&mut self, annotation: A, f: FN) -> Result<Variable, SynthesisError>
where
FN: FnOnce() -> Result<F, SynthesisError>,
A: FnOnce() -> AR,
AR: AsRef<str>;
fn alloc_input<FN, A, AR>(&mut self, annotation: A, f: FN) -> Result<Variable, SynthesisError>
where
FN: FnOnce() -> Result<F, SynthesisError>,
A: FnOnce() -> AR,
AR: AsRef<str>;
fn enforce<A, AR, LA, LB, LC>(&mut self, annotation: A, a: LA, b: LB, c: LC)
where
A: FnOnce() -> AR,
AR: AsRef<str>,
LA: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
LB: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
LC: FnOnce(LinearCombination<F>) -> LinearCombination<F>;
fn push_namespace<NR, N>(&mut self, name_fn: N)
where
NR: AsRef<str>,
N: FnOnce() -> NR;
fn pop_namespace(&mut self);
fn get_root(&mut self) -> &mut Self::Root;
fn ns<NR, N>(&mut self, name_fn: N) -> Namespace<'_, F, Self::Root>
where
NR: AsRef<str>,
N: FnOnce() -> NR,
{
self.get_root().push_namespace(name_fn);
Namespace(self.get_root(), PhantomData)
}
fn num_constraints(&self) -> usize;
}
pub struct Namespace<'a, F: Field, CS: ConstraintSystem<F>>(&'a mut CS, PhantomData<F>);
pub trait ConstraintSynthesizer<F: Field> {
fn generate_constraints<CS: ConstraintSystem<F>>(&self, cs: &mut CS) -> Result<(), SynthesisError>;
}
impl<F: Field, CS: ConstraintSystem<F>> ConstraintSystem<F> for Namespace<'_, F, CS> {
type Root = CS::Root;
#[inline]
fn one() -> Variable {
CS::one()
}
#[inline]
fn alloc<FN, A, AR>(&mut self, annotation: A, f: FN) -> Result<Variable, SynthesisError>
where
FN: FnOnce() -> Result<F, SynthesisError>,
A: FnOnce() -> AR,
AR: AsRef<str>,
{
self.0.alloc(annotation, f)
}
#[inline]
fn alloc_input<FN, A, AR>(&mut self, annotation: A, f: FN) -> Result<Variable, SynthesisError>
where
FN: FnOnce() -> Result<F, SynthesisError>,
A: FnOnce() -> AR,
AR: AsRef<str>,
{
self.0.alloc_input(annotation, f)
}
#[inline]
fn enforce<A, AR, LA, LB, LC>(&mut self, annotation: A, a: LA, b: LB, c: LC)
where
A: FnOnce() -> AR,
AR: AsRef<str>,
LA: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
LB: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
LC: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
{
self.0.enforce(annotation, a, b, c)
}
#[inline]
fn push_namespace<NR, N>(&mut self, _: N)
where
NR: AsRef<str>,
N: FnOnce() -> NR,
{
panic!("only the root's push_namespace should be called");
}
#[inline]
fn pop_namespace(&mut self) {
panic!("only the root's pop_namespace should be called");
}
#[inline]
fn get_root(&mut self) -> &mut Self::Root {
self.0.get_root()
}
#[inline]
fn num_constraints(&self) -> usize {
self.0.num_constraints()
}
}
impl<F: Field, CS: ConstraintSystem<F>> Drop for Namespace<'_, F, CS> {
#[inline]
fn drop(&mut self) {
self.get_root().pop_namespace()
}
}
impl<F: Field, CS: ConstraintSystem<F>> ConstraintSystem<F> for &mut CS {
type Root = CS::Root;
#[inline]
fn one() -> Variable {
CS::one()
}
#[inline]
fn alloc<FN, A, AR>(&mut self, annotation: A, f: FN) -> Result<Variable, SynthesisError>
where
FN: FnOnce() -> Result<F, SynthesisError>,
A: FnOnce() -> AR,
AR: AsRef<str>,
{
(**self).alloc(annotation, f)
}
#[inline]
fn alloc_input<FN, A, AR>(&mut self, annotation: A, f: FN) -> Result<Variable, SynthesisError>
where
FN: FnOnce() -> Result<F, SynthesisError>,
A: FnOnce() -> AR,
AR: AsRef<str>,
{
(**self).alloc_input(annotation, f)
}
#[inline]
fn enforce<A, AR, LA, LB, LC>(&mut self, annotation: A, a: LA, b: LB, c: LC)
where
A: FnOnce() -> AR,
AR: AsRef<str>,
LA: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
LB: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
LC: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
{
(**self).enforce(annotation, a, b, c)
}
#[inline]
fn push_namespace<NR, N>(&mut self, name_fn: N)
where
NR: AsRef<str>,
N: FnOnce() -> NR,
{
(**self).push_namespace(name_fn)
}
#[inline]
fn pop_namespace(&mut self) {
(**self).pop_namespace()
}
#[inline]
fn get_root(&mut self) -> &mut Self::Root {
(**self).get_root()
}
#[inline]
fn num_constraints(&self) -> usize {
(**self).num_constraints()
}
}