Skip to content
Snippets Groups Projects
Commit b937940d authored by Simon Praetorius's avatar Simon Praetorius
Browse files

Revert "Speed up MatrixIndestSet::exportIdx()"

This reverts commit b6409900.
parent c80e923e
No related branches found
No related tags found
No related merge requests found
......@@ -193,7 +193,8 @@ namespace Dune {
for (size_type row=0; row<rows_; row++) {
std::visit([&](const auto& rowIndices) {
matrix.setIndicesNoSort(row, rowIndices.begin(), rowIndices.end());
for(size_type col : rowIndices)
matrix.addindex(row, col);
}, indices_[row]);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment