| 13 | |
| 14 | #[derive(Copy, Clone)] |
| 15 | struct DummyCircuit<F: PrimeField> { |
| 16 | pub a: Option<F>, |
| 17 | pub b: Option<F>, |
| 18 | pub num_variables: usize, |
| 19 | pub num_constraints: usize, |
| 20 | } |
| 21 | |
| 22 | impl<F: PrimeField> ConstraintSynthesizer<F> for DummyCircuit<F> { |
| 23 | fn generate_constraints(self, cs: ConstraintSystemRef<F>) -> Result<(), SynthesisError> { |
nothing calls this directly
no outgoing calls
no test coverage detected