(&self)
| 56 | |
| 57 | impl<F: PrimeField> Clone for DummyCircuit<F> { |
| 58 | fn clone(&self) -> Self { |
| 59 | DummyCircuit { |
| 60 | a: self.a, |
| 61 | b: self.b, |
| 62 | num_variables: self.num_variables, |
| 63 | num_constraints: self.num_constraints, |
| 64 | } |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | impl<F: PrimeField> ConstraintSynthesizer<F> for DummyCircuit<F> { |
no outgoing calls