Browse Source

chore: replace assert_eq with match statement

pull/1/head
dmpierre 6 months ago
parent
commit
22c8f50b04
1 changed files with 8 additions and 10 deletions
  1. +8
    -10
      src/circom/circuit.rs

+ 8
- 10
src/circom/circuit.rs

@ -1,8 +1,8 @@
use std::collections::HashMap;
use std::{collections::HashMap, f32::consts::E};
use ark_ff::PrimeField;
use ark_relations::r1cs::{
ConstraintSynthesizer, ConstraintSystemRef, LinearCombination, SynthesisError, Variable,
self, ConstraintSynthesizer, ConstraintSystemRef, LinearCombination, SynthesisError, Variable,
};
use color_eyre::Result;
@ -94,16 +94,14 @@ impl ConstraintSynthesizer for CircomCircuit {
);
}
assert_eq!(
match (
circom_index_to_cs_index.get(&0),
Some(&Variable::One),
"circom index 0 should be allocated as Variable::One"
);
assert_eq!(
circom_index_to_cs_index.len(),
self.r1cs.num_inputs,
"Did not map all inputs"
);
) == (Some(&Variable::One), self.r1cs.num_inputs)
{
true => Ok(()),
false => Err(SynthesisError::Unsatisfiable),
}?;
for i in 0..self.r1cs.num_aux {
let circom_defined_r1cs_index = i + self.r1cs.num_inputs;

Loading…
Cancel
Save