Skip to content
Snippets Groups Projects
Commit c84dfc46 authored by Timo Koch's avatar Timo Koch
Browse files

Merge branch 'fix/test_ccadaptive2p' into 'master'

Fix of ccadaptive2p assertion error

See merge request !425
parent f774ad6b
No related branches found
No related tags found
2 merge requests!617[WIP] Next,!426Merge branch 'fix/test_ccadaptive2p' into 'next'
...@@ -288,9 +288,9 @@ public: ...@@ -288,9 +288,9 @@ public:
if (element.hasFather()) if (element.hasFather())
{ {
auto eFather = element.father(); auto eFather = element.father();
while(eFather.isNew() && eFather.level() > 0) eFather = eFather.father(); while(eFather.isNew() && eFather.level() > 0)
FVElementGeometry fvGeometryFather; eFather = eFather.father();
fvGeometryFather.update(problem.gridView(), eFather);
Scalar massFather = 0.0; Scalar massFather = 0.0;
if(!isBox) if(!isBox)
......
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