Browse Source

remove a padded witness (#187)

main
Srinath Setty 1 year ago
committed by GitHub
parent
commit
bfbd786570
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/nifs.rs

+ 2
- 2
src/nifs.rs

@ -269,7 +269,7 @@ mod tests {
let one = <G::Scalar as Field>::ONE; let one = <G::Scalar as Field>::ONE;
let (num_cons, num_vars, num_io, A, B, C) = { let (num_cons, num_vars, num_io, A, B, C) = {
let num_cons = 4; let num_cons = 4;
let num_vars = 4;
let num_vars = 3;
let num_io = 2; let num_io = 2;
// Consider a cubic equation: `x^3 + x + 5 = y`, where `x` and `y` are respectively the input and output. // 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 let i1 = z2 + one + one + one + one + one; // constraint 3
// store the witness and IO for the instance // store the witness and IO for the instance
let W = vec![z0, z1, z2, <G::Scalar as Field>::ZERO];
let W = vec![z0, z1, z2];
let X = vec![i0, i1]; let X = vec![i0, i1];
(i1, W, X) (i1, W, X)
}; };

Loading…
Cancel
Save