Skip to content
Snippets Groups Projects
Commit d784a766 authored by Kilian Weishaupt's avatar Kilian Weishaupt
Browse files

Merge branch 'fix/mpfa-localassembler-assertion' into 'master'

[mpfa][localassembler] fix wrong assertion

Closes #610

See merge request !1322
parents 29298458 6f9954f3
No related branches found
No related tags found
2 merge requests!1337WIP Fix/dirichlet caching v2,!1322[mpfa][localassembler] fix wrong assertion
...@@ -163,7 +163,7 @@ class InteractionVolumeAssemblerBase ...@@ -163,7 +163,7 @@ class InteractionVolumeAssemblerBase
resizeVector_(outsideG, iv.numFaces()); resizeVector_(outsideG, iv.numFaces());
// we require the CA matrix to have the correct size already // we require the CA matrix to have the correct size already
assert(CA.rows() == iv.numFaces() && CA.cols() == iv.numUnknowns()); assert(handle.CA().rows() == iv.numFaces() && handle.CA().cols() == iv.numUnknowns());
//! For each face, we... //! For each face, we...
//! - arithmetically average the phase densities //! - arithmetically average the phase densities
......
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