Skip to content

Commit

Permalink
minifix
Browse files Browse the repository at this point in the history
  • Loading branch information
Rumata888 committed Mar 5, 2024
1 parent 2dfc7bd commit c947f64
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ template <typename Curve> class IPA {

// Step 6.
// Compute b_zero where b_zero can be computed using the polynomial:
// g(X) = ∏_{i ∈ [k]} (1 + u_{k-i}^{-1}.X^{2^{i-1}}).
// g(X) = ∏_{i ∈ [k]} (1 + u_{i-1}^{-1}.X^{2^{i-1}}).
// b_zero = g(evaluation) = ∏_{i ∈ [k]} (1 + u_{i-1}^{-1}. (evaluation)^{2^{i-1}})
Fr b_zero = Fr::one();
for (size_t i = 0; i < log_poly_degree; i++) {
Expand Down

0 comments on commit c947f64

Please sign in to comment.