Skip to content

Commit bf62381

Browse files
committed
Add debug flag
1 parent 1f43c1f commit bf62381

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

spartan_parallel/src/r1csproof.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,14 @@ impl<S: SpartanExtensionField + Send + Sync> R1CSProof<S> {
257257
.collect()
258258
);
259259

260+
print!(
261+
"=> poly_A,B,C,D num_variables: {:?}, {:?}, {:?}, {:?}",
262+
A.get_num_vars(),
263+
B.get_num_vars(),
264+
C.get_num_vars(),
265+
D.get_num_vars(),
266+
);
267+
260268
let arc_A: ArcMultilinearExtension<'_, GoldilocksExt2> = Arc::new(
261269
A.Z.iter().cloned().map(|s|
262270
GoldilocksExt2::from_raw_bytes_unchecked(&s.inner().to_raw_bytes())

0 commit comments

Comments
 (0)