Skip to content

Commit

Permalink
test_augmented_circuit_size should check synthesis works
Browse files Browse the repository at this point in the history
  • Loading branch information
mpenciak committed Mar 3, 2024
1 parent 002384c commit 836aedd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/cyclefold/nova_circuit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,9 @@ mod test {
);
let mut cs: TestShapeCS<Dual<E>> = TestShapeCS::default();

let _ = circuit.synthesize(&mut cs);
let res = circuit.synthesize(&mut cs);

res.unwrap();

let num_constraints = cs.num_constraints();
let num_variables = cs.num_aux();
Expand Down

0 comments on commit 836aedd

Please sign in to comment.