Skip to content

Commit

Permalink
one more
Browse files Browse the repository at this point in the history
  • Loading branch information
ledwards2225 committed Jul 8, 2024
1 parent adfcd9b commit 6a2c1d7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ template <typename Curve> void MsmSorter<Curve>::batched_affine_add_in_place(Add
size_t pair_idx = 0; // index into array of denominators for each pair
bool more_additions = false;
for (auto& count : sequence_counts) {
const size_t num_pairs = count >> 1;
const auto num_pairs = count >> 1;
const bool overflow = static_cast<bool>(count & 0x01ULL);
// Compute the sum of all pairs in the sequence and store the result in the same points array
for (size_t j = 0; j < num_pairs; ++j) {
Expand Down

0 comments on commit 6a2c1d7

Please sign in to comment.