Skip to content

Commit

Permalink
fix FRI fold formula
Browse files Browse the repository at this point in the history
  • Loading branch information
longerd authored Nov 19, 2024
1 parent 875fb38 commit be5b6ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fri.rs
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ pub trait ProverChannel {
// 2. perform a random linear combination of odd and even coefficients of f(x):
// f_e(x) = c0 + c2 * x + c4 * x^2 + c6 * x^3
// f_o(x) = c1 + c3 * x + c5 * x^2 + c7 * x^3
// f(x) = f_e(x) + x * f_o(x)
// f(x) = f_e(x^2) + x * f_o(x^2)
// f'(x) = f_e(x) + α * f_o(x)
// α = <random field element sent from verifier>
//
Expand Down

0 comments on commit be5b6ff

Please # to comment.