Skip to content

Commit

Permalink
fix typo (Plonky3#383)
Browse files Browse the repository at this point in the history
fix typo in pcs open
  • Loading branch information
dongliangCai authored Jun 3, 2024
1 parent 0743900 commit b69b0f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fri/src/two_adic_pcs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ where
- Instead of computing all alpha^i, we just compute alpha^i for i up to the largest width
of a matrix, then multiply by an "alpha offset" when accumulating.
a^0 x0 + a^1 x1 + a^2 x2 + a^3 x3 + ...
= a^0 ( a^0 x0 + a^1 x1 ) + a^2 ( a^0 x0 + a^1 x1 ) + ...
= a^0 ( a^0 x0 + a^1 x1 ) + a^2 ( a^0 x2 + a^1 x3 ) + ...
(see `alpha_pows`, `alpha_pow_offset`, `num_reduced`)
- For each unique point z, we precompute 1/(X-z) for the largest subgroup opened at this point.
Expand Down

0 comments on commit b69b0f0

Please sign in to comment.