Skip to content
Snippets Groups Projects
Commit 5ef7b420 authored by Max Kahnt's avatar Max Kahnt
Browse files

Use Arithmetic::addProduct instead of StaticMatrix::axpy.

parent d2b3344e
Branches
No related tags found
No related merge requests found
......@@ -265,7 +265,7 @@ public:
size_t j = j_it.index();
for (size_t k=0; k<lr_fine_factor.N(); ++k)
StaticMatrix::axpy(lr_coarse_factor[k][j], *j_it, lr_fine_factor[k][i]);
Arithmetic::addProduct(lr_coarse_factor[k][j], *j_it, lr_fine_factor[k][i]);
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment