We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5196830 commit abe0522Copy full SHA for abe0522
spartan_parallel/src/sparse_mlpoly.rs
@@ -450,8 +450,7 @@ impl<S: SpartanExtensionField> SparseMatPolynomial<S> {
450
451
for i in 0..self.M.len() {
452
let entry = &self.M[i];
453
- M_evals[entry.col / max_num_cols][entry.col % max_num_cols] =
454
- M_evals[entry.col / max_num_cols][entry.col % max_num_cols] + rx[entry.row] * entry.val;
+ M_evals[entry.col / max_num_cols][entry.col % max_num_cols] += rx[entry.row] * entry.val;
455
}
456
M_evals
457
0 commit comments