Skip to content

Commit

Permalink
Addressing some review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanmon committed Oct 25, 2024
1 parent 5117506 commit 00ed5ec
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ AvmCircuitBuilder::ProverPolynomials AvmCircuitBuilder::compute_polynomials() co
// A parallel version might be considered in the future.
for (size_t i = 0; i < num_rows; i++) {
const auto row = rows[i].as_vector();
for (size_t j = 0; j < Row::SIZE; j++) {
if (!row[j].is_zero()) {
col_nonzero_size[j] = i + 1;
for (size_t col = 0; col < Row::SIZE; col++) {
if (!row[col].is_zero()) {
col_nonzero_size[col] = i + 1;
}
}
}
Expand Down

0 comments on commit 00ed5ec

Please sign in to comment.