From bfbd786570326bb8d0049368e4334743026b5204 Mon Sep 17 00:00:00 2001 From: Srinath Setty Date: Wed, 21 Jun 2023 17:05:20 -0700 Subject: [PATCH] remove a padded witness (#187) --- src/nifs.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nifs.rs b/src/nifs.rs index 645032f..6dd775a 100644 --- a/src/nifs.rs +++ b/src/nifs.rs @@ -269,7 +269,7 @@ mod tests { let one = ::ONE; let (num_cons, num_vars, num_io, A, B, C) = { let num_cons = 4; - let num_vars = 4; + let num_vars = 3; let num_io = 2; // Consider a cubic equation: `x^3 + x + 5 = y`, where `x` and `y` are respectively the input and output. @@ -340,7 +340,7 @@ mod tests { let i1 = z2 + one + one + one + one + one; // constraint 3 // store the witness and IO for the instance - let W = vec![z0, z1, z2, ::ZERO]; + let W = vec![z0, z1, z2]; let X = vec![i0, i1]; (i1, W, X) };