Browse Source

Apply suggestions from code review

Co-Authored-By: Pratyush Mishra <pratyushmishra@berkeley.edu>
master
Georgios Konstantopoulos 4 years ago
committed by Pratyush Mishra
parent
commit
0ffa409ec1
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      r1cs-std/src/test_constraint_counter.rs

+ 6
- 6
r1cs-std/src/test_constraint_counter.rs

@ -3,15 +3,15 @@ use algebra::Field;
use r1cs_core::{ConstraintSystem, Index, LinearCombination, SynthesisError, Variable}; use r1cs_core::{ConstraintSystem, Index, LinearCombination, SynthesisError, Variable};
/// Constraint counter for testing purposes. /// Constraint counter for testing purposes.
pub struct TestConstraintCounter {
pub struct ConstraintCounter {
pub num_inputs: usize, pub num_inputs: usize,
pub num_aux: usize, pub num_aux: usize,
pub num_constraints: usize, pub num_constraints: usize,
} }
impl TestConstraintCounter {
pub fn new() -> TestConstraintCounter {
TestConstraintCounter {
impl ConstraintCounter {
pub fn new() -> Self {
Self {
num_aux: 0, num_aux: 0,
num_inputs: 0, num_inputs: 0,
num_constraints: 0, num_constraints: 0,
@ -23,7 +23,7 @@ impl TestConstraintCounter {
} }
} }
impl<ConstraintF: Field> ConstraintSystem<ConstraintF> for TestConstraintCounter {
impl<ConstraintF: Field> ConstraintSystem<ConstraintF> for ConstraintCounter {
type Root = Self; type Root = Self;
fn alloc<F, A, AR>(&mut self, _: A, _: F) -> Result<Variable, SynthesisError> fn alloc<F, A, AR>(&mut self, _: A, _: F) -> Result<Variable, SynthesisError>
@ -114,7 +114,7 @@ mod tests {
let empty_circuit = TestCircuit::<Fq>(None); let empty_circuit = TestCircuit::<Fq>(None);
let populated_circuit = TestCircuit(Some(Fq::from(10u32))); let populated_circuit = TestCircuit(Some(Fq::from(10u32)));
let mut counter = TestConstraintCounter::new();
let mut counter = ConstraintCounter::new();
let mut cs = TestConstraintSystem::new(); let mut cs = TestConstraintSystem::new();
empty_circuit empty_circuit

Loading…
Cancel
Save