Skip to content

Commit

Permalink
Update sparse_utilities.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
cheshmi authored Jan 29, 2024
1 parent 16d1e11 commit 4a81d5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/sparse_utilities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ namespace sym_lib {
}

void copy_from_to(CSR *src, CSR *dst){
for (int i = 0; i < src->n; ++i) {
for (int i = 0; i < src->m; ++i) {
dst->p[i] = dst->p[i];
for (int j = src->p[i]; j < src->p[i + 1]; ++j) {
dst->i[j] = src->i[j];
Expand Down

0 comments on commit 4a81d5f

Please sign in to comment.