Skip to content

Commit ff5bf80

Browse files
authored
Merge pull request #22 from longerd/dev
fix FRI fold formula
2 parents 875fb38 + be5b6ff commit ff5bf80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fri.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ pub trait ProverChannel {
507507
// 2. perform a random linear combination of odd and even coefficients of f(x):
508508
// f_e(x) = c0 + c2 * x + c4 * x^2 + c6 * x^3
509509
// f_o(x) = c1 + c3 * x + c5 * x^2 + c7 * x^3
510-
// f(x) = f_e(x) + x * f_o(x)
510+
// f(x) = f_e(x^2) + x * f_o(x^2)
511511
// f'(x) = f_e(x) + α * f_o(x)
512512
// α = <random field element sent from verifier>
513513
//

0 commit comments

Comments
 (0)