Skip to content

Commit

Permalink
Fix the degree of TE acc polynomials for
Browse files Browse the repository at this point in the history
  • Loading branch information
drskalman committed Sep 12, 2024
1 parent 8ec5484 commit 4434e1b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions common/src/gadgets/te_cond_add.rs
Original file line number Diff line number Diff line change
Expand Up @@ -255,11 +255,10 @@ mod tests {
let c1 = c1.interpolate_by_ref();
let c2 = c2.interpolate_by_ref();
assert_eq!(c1.degree(), 4 * n - 3);
assert_eq!(c2.degree(), 3 * n - 2);
assert_eq!(c2.degree(), 4 * n - 3);

domain.divide_by_vanishing_poly(&c1);
domain.divide_by_vanishing_poly(&c2);

// test_gadget(gadget);
}

Expand Down

0 comments on commit 4434e1b

Please sign in to comment.