Skip to content
Snippets Groups Projects
Commit 9c306f9c authored by Christian Rheinbay's avatar Christian Rheinbay
Browse files

fixed marmousi hopefully

parent 1cc87257
No related branches found
No related tags found
No related merge requests found
......@@ -93,7 +93,7 @@ void GramianBlockInverse::ScalarProductInverse(Vector &b) const {
void GramianBlockInverse::productOneCellScalarProductInverse(const Vector &u, const DGAcousticElement &elem,
Vector &b) const {
double a = elem.Area();
const SparseRMatrix &SpSm = ScalarMInverse.at(a);
const SparseRMatrix &SpSm = ScalarMInverse.at(truncate_to_8_significant_digits(a));
int Row = u.find_row(elem.GetCell()()).Id();
productOneCellSparse(u, SpSm, Row, b);
}
......
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