Skip to content
Snippets Groups Projects
Commit 235097de authored by Thomas Witkowski's avatar Thomas Witkowski
Browse files

Reimplemented buildAfterCoarsen for only assembling vectors.

parent fc1e36a9
No related branches found
No related tags found
No related merge requests found
...@@ -687,7 +687,7 @@ namespace AMDiS { ...@@ -687,7 +687,7 @@ namespace AMDiS {
bool assembleMatrix = true; bool assembleMatrix = true;
// The DOFMatrix which should be assembled (or not, if assembleMatrix // The DOFMatrix which should be assembled (or not, if assembleMatrix
// will be set to false). // will be set to false).
DOFMatrix *matrix = (*systemMatrix)[i][j]; DOFMatrix *matrix = (asmMatrix ? (*systemMatrix)[i][j] : NULL);
if (writeAsmInfo && matrix) { if (writeAsmInfo && matrix) {
for (std::vector<Operator*>::iterator it = matrix->getOperatorsBegin(); for (std::vector<Operator*>::iterator it = matrix->getOperatorsBegin();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment