Skip to content

Commit

Permalink
Merge pull request #22 from longerd/dev
Browse files Browse the repository at this point in the history
fix FRI fold formula
  • Loading branch information
andrewmilson authored Nov 19, 2024
2 parents 875fb38 + be5b6ff commit ff5bf80
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 ff5bf80

Please sign in to comment.