Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ludamad0 committed Feb 10, 2024
1 parent 5c3783e commit 069d6d5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1081,7 +1081,8 @@ std::vector<affine_element<Fq, Fr, T>> element<Fq, Fr, T>::batch_mul_with_endomo
num_points,
[&](size_t start, size_t end) {
for (size_t i = start; i < end; ++i) {
work_elements[i] = points[i].is_infinity() ? work_elements[i].set_infinity() : work_elements[i];
work_elements[i] =
points[i].is_point_at_infinity() ? work_elements[i].set_infinity() : work_elements[i];
}
},
/*finite_field_additions_per_iteration=*/0,
Expand Down

0 comments on commit 069d6d5

Please sign in to comment.