Skip to content

Commit

Permalink
fix: bound
Browse files Browse the repository at this point in the history
  • Loading branch information
yi-sun committed Jan 19, 2025
1 parent e00b46b commit c710bdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/native/recursion/src/fri/two_adic_pcs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ pub fn verify_two_adic_pcs<C: Config>(
builder
.assign(&n, (p_at_z - p_at_x) * alpha_pow_cache[t.value()] + n);
});
if ps_at_z.len().value() > alpha_pow_cache.len() {
if ps_at_z.len().value() >= alpha_pow_cache.len() {
let next: Ext<_, _> = builder.uninit();
alpha_pow_cache.push(next);
builder.assign(
Expand Down

0 comments on commit c710bdc

Please sign in to comment.