Skip to content
Snippets Groups Projects
Commit 4e8fb584 authored by Hörl, Maximilian's avatar Hörl, Maximilian
Browse files

[bugfix] correct indices for symmetrization of matrix quadraticIntegrals

parent 726b6952
No related branches found
No related tags found
No related merge requests found
......@@ -174,7 +174,7 @@ public:
}
*/
//NOTE: probably unnecessary
quadraticIntregrals[i][j] = quadraticIntregrals[j][i];
quadraticIntregrals[j][i] = quadraticIntregrals[i][j];
}
}
std::cout << "linearIntegrals:\n" << linearIntegrals << "\n\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment