Skip to content

Commit

Permalink
8714: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanmon committed Sep 28, 2024
1 parent b40e2e5 commit 7b087d6
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,6 @@ Fr_ _evaluate_mle(std::span<const Fr_> evaluation_points,
const size_t ALLOW_ONE_PAST_READ = 1;
for (size_t i = 0; i < n_l; ++i) {
// curr[i] = (Fr(1) - u_l) * prev[i * 2] + u_l * prev[(i * 2) + 1];

tmp[i] = coefficients.get(i * 2 + offset) +
u_l * (coefficients.get(i * 2 + 1 + offset, ALLOW_ONE_PAST_READ) - coefficients.get(i * 2 + offset));
}
Expand Down

0 comments on commit 7b087d6

Please sign in to comment.