From b617d217a18c70eeeb667aa56c3fb7058748db55 Mon Sep 17 00:00:00 2001 From: Pratyush Mishra Date: Mon, 12 Aug 2019 18:05:24 -0700 Subject: [PATCH] Move ConstraintVar to r1cs-core --- r1cs-std/src/fields/fp.rs | 14 +- r1cs-std/src/fields/fp2.rs | 4 +- r1cs-std/src/fields/fp6_3over2.rs | 3 +- r1cs-std/src/lib.rs | 288 +----------------------------- 4 files changed, 9 insertions(+), 300 deletions(-) diff --git a/r1cs-std/src/fields/fp.rs b/r1cs-std/src/fields/fp.rs index b78204a..fc6403d 100644 --- a/r1cs-std/src/fields/fp.rs +++ b/r1cs-std/src/fields/fp.rs @@ -1,20 +1,12 @@ use algebra::{bytes::ToBytes, FpParameters, PrimeField}; -use r1cs_core::{ConstraintSystem, LinearCombination, SynthesisError}; +use r1cs_core::{ConstraintSystem, LinearCombination, SynthesisError, ConstraintVar::{self, *}}; use std::borrow::Borrow; -use super::FieldGadget; -use crate::{ - boolean::{AllocatedBit, Boolean}, - uint8::UInt8, -}; - +use crate::boolean::AllocatedBit; +use crate::Assignment; use crate::prelude::*; -use crate::{ - Assignment, - ConstraintVar::{self, *}, -}; #[derive(Debug)] pub struct FpGadget { diff --git a/r1cs-std/src/fields/fp2.rs b/r1cs-std/src/fields/fp2.rs index ebf2ec9..26e8a08 100644 --- a/r1cs-std/src/fields/fp2.rs +++ b/r1cs-std/src/fields/fp2.rs @@ -2,12 +2,12 @@ use algebra::{ fields::{Fp2, Fp2Parameters}, Field, PrimeField, }; -use r1cs_core::{ConstraintSystem, SynthesisError}; +use r1cs_core::{ConstraintSystem, SynthesisError, ConstraintVar}; use std::{borrow::Borrow, marker::PhantomData}; use crate::fields::fp::FpGadget; use crate::prelude::*; -use crate::{Assignment, ConstraintVar}; +use crate::Assignment; #[derive(Derivative)] #[derivative(Debug(bound = "P: Fp2Parameters, ConstraintF: PrimeField"))] diff --git a/r1cs-std/src/fields/fp6_3over2.rs b/r1cs-std/src/fields/fp6_3over2.rs index 22c15cb..01f3600 100644 --- a/r1cs-std/src/fields/fp6_3over2.rs +++ b/r1cs-std/src/fields/fp6_3over2.rs @@ -5,11 +5,10 @@ use algebra::{ }, PrimeField, }; -use r1cs_core::{ConstraintSystem, SynthesisError}; +use r1cs_core::{ConstraintSystem, SynthesisError, ConstraintVar}; use std::{borrow::Borrow, marker::PhantomData}; use crate::prelude::*; -use crate::ConstraintVar; use crate::Assignment; type Fp2Gadget = super::fp2::Fp2Gadget<

::Fp2Params, ConstraintF>; diff --git a/r1cs-std/src/lib.rs b/r1cs-std/src/lib.rs index d60bc96..fc35d68 100644 --- a/r1cs-std/src/lib.rs +++ b/r1cs-std/src/lib.rs @@ -38,11 +38,6 @@ extern crate algebra; #[macro_use] extern crate derivative; -use crate::ConstraintVar::*; -use algebra::Field; -use r1cs_core::{LinearCombination, SynthesisError, Variable}; -use std::ops::{Add, AddAssign, Mul, MulAssign, Neg, Sub}; - pub mod test_constraint_system; pub mod bits; @@ -69,291 +64,14 @@ pub mod prelude { } pub trait Assignment { - fn get(self) -> Result; + fn get(self) -> Result; } impl Assignment for Option { - fn get(self) -> Result { + fn get(self) -> Result { match self { Some(v) => Ok(v), - None => Err(SynthesisError::AssignmentMissing), - } - } -} - -#[derive(Clone, Debug)] -pub enum ConstraintVar { - LC(LinearCombination), - Var(Variable), -} - -impl From for ConstraintVar { - #[inline] - fn from(var: Variable) -> Self { - Var(var) - } -} - -impl From<(F, Variable)> for ConstraintVar { - #[inline] - fn from(coeff_var: (F, Variable)) -> Self { - LC(coeff_var.into()) - } -} - -impl From<(F, LinearCombination)> for ConstraintVar { - #[inline] - fn from((coeff, mut lc): (F, LinearCombination)) -> Self { - lc *= coeff; - LC(lc) - } -} - -impl From<(F, ConstraintVar)> for ConstraintVar { - #[inline] - fn from((coeff, var): (F, ConstraintVar)) -> Self { - match var { - LC(lc) => (coeff, lc).into(), - Var(var) => (coeff, var).into(), - } - } -} - -impl ConstraintVar { - #[inline] - pub fn zero() -> Self { - LC(LinearCombination::zero()) - } - - pub fn negate_in_place(&mut self) { - match self { - LC(ref mut lc) => lc.negate_in_place(), - Var(var) => *self = (-F::one(), *var).into(), - } - } - - pub fn double_in_place(&mut self) { - match self { - LC(lc) => lc.double_in_place(), - Var(var) => *self = (F::one().double(), *var).into(), + None => Err(r1cs_core::SynthesisError::AssignmentMissing), } } } - -impl Add> for ConstraintVar { - type Output = LinearCombination; - - #[inline] - fn add(self, other_lc: LinearCombination) -> LinearCombination { - match self { - LC(lc) => other_lc + lc, - Var(var) => other_lc + var, - } - } -} - -impl Sub> for ConstraintVar { - type Output = LinearCombination; - - #[inline] - fn sub(self, other_lc: LinearCombination) -> LinearCombination { - let result = match self { - LC(lc) => other_lc - lc, - Var(var) => other_lc - var, - }; - -result - } -} - -impl Add> for &ConstraintVar { - type Output = LinearCombination; - - #[inline] - fn add(self, other_lc: LinearCombination) -> LinearCombination { - match self { - LC(lc) => other_lc + lc, - Var(var) => other_lc + *var, - } - } -} - -impl Sub> for &ConstraintVar { - type Output = LinearCombination; - - #[inline] - fn sub(self, other_lc: LinearCombination) -> LinearCombination { - let result = match self { - LC(lc) => other_lc - lc, - Var(var) => other_lc - *var, - }; - -result - } -} - -impl Add<(F, Variable)> for ConstraintVar { - type Output = Self; - - #[inline] - fn add(self, var: (F, Variable)) -> Self { - let lc = match self { - LC(lc) => lc + var, - Var(var2) => LinearCombination::from(var2) + var, - }; - LC(lc) - } -} - -impl AddAssign<(F, Variable)> for ConstraintVar { - #[inline] - fn add_assign(&mut self, var: (F, Variable)) { - match self { - LC(ref mut lc) => *lc += var, - Var(var2) => *self = LC(LinearCombination::from(*var2) + var), - }; - } -} - -impl Neg for ConstraintVar { - type Output = Self; - - #[inline] - fn neg(mut self) -> Self { - self.negate_in_place(); - self - } -} - -impl Mul for ConstraintVar { - type Output = Self; - - #[inline] - fn mul(self, scalar: F) -> Self { - match self { - LC(lc) => LC(lc * scalar), - Var(var) => (scalar, var).into(), - } - } -} - -impl MulAssign for ConstraintVar { - #[inline] - fn mul_assign(&mut self, scalar: F) { - match self { - LC(lc) => *lc *= scalar, - Var(var) => *self = (scalar, *var).into(), - } - } -} - -impl Sub<(F, Variable)> for ConstraintVar { - type Output = Self; - - #[inline] - fn sub(self, (coeff, var): (F, Variable)) -> Self { - self + (-coeff, var) - } -} - -impl Add for ConstraintVar { - type Output = Self; - - fn add(self, other: Variable) -> Self { - self + (F::one(), other) - } -} - -impl Sub for ConstraintVar { - type Output = Self; - - #[inline] - fn sub(self, other: Variable) -> Self { - self - (F::one(), other) - } -} - -impl<'a, F: Field> Add<&'a Self> for ConstraintVar { - type Output = Self; - - #[inline] - fn add(self, other: &'a Self) -> Self { - let lc = match self { - LC(lc2) => lc2, - Var(var) => var.into(), - }; - let lc2 = match other { - LC(lc2) => lc + lc2, - Var(var) => lc + *var, - }; - LC(lc2) - } -} - -impl<'a, F: Field> Sub<&'a Self> for ConstraintVar { - type Output = Self; - - #[inline] - fn sub(self, other: &'a Self) -> Self { - let lc = match self { - LC(lc2) => lc2, - Var(var) => var.into(), - }; - let lc2 = match other { - LC(lc2) => lc - lc2, - Var(var) => lc - *var, - }; - LC(lc2) - } -} - -impl Add<&ConstraintVar> for &ConstraintVar { - type Output = ConstraintVar; - - #[inline] - fn add(self, other: &ConstraintVar) -> Self::Output { - (ConstraintVar::zero() + self) + other - } -} - -impl Sub<&ConstraintVar> for &ConstraintVar { - type Output = ConstraintVar; - - #[inline] - fn sub(self, other: &ConstraintVar) -> Self::Output { - (ConstraintVar::zero() + self) - other - } -} - -impl<'a, F: Field> Add<(F, &'a Self)> for ConstraintVar { - type Output = Self; - - #[inline] - fn add(self, (coeff, other): (F, &'a Self)) -> Self { - let mut lc = match self { - LC(lc2) => lc2, - Var(var) => LinearCombination::zero() + var, - }; - - lc = match other { - LC(lc2) => lc + (coeff, lc2), - Var(var) => lc + (coeff, *var), - }; - LC(lc) - } -} - -impl<'a, F: Field> Sub<(F, &'a Self)> for ConstraintVar { - type Output = Self; - - #[inline] - fn sub(self, (coeff, other): (F, &'a Self)) -> Self { - let mut lc = match self { - LC(lc2) => lc2, - Var(var) => LinearCombination::zero() + var, - }; - lc = match other { - LC(lc2) => lc - (coeff, lc2), - Var(var) => lc - (coeff, *var), - }; - LC(lc) - } -}