| 48 | // Copied from bitvm/src/chunker/disprove_execution.rs |
| 49 | #[derive(Copy)] |
| 50 | pub struct DummyCircuit<F: PrimeField> { |
| 51 | pub a: Option<F>, |
| 52 | pub b: Option<F>, |
| 53 | pub num_variables: usize, |
| 54 | pub num_constraints: usize, |
| 55 | } |
| 56 | |
| 57 | impl<F: PrimeField> Clone for DummyCircuit<F> { |
| 58 | fn clone(&self) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected