Merge pull request #5828 from aritorto/rmIf

Unnecessary check isInterior
This commit is contained in:
Markus Blatt
2024-12-20 17:56:39 +01:00
committed by GitHub

View File

@@ -498,8 +498,7 @@ public:
Scalar dofVolume = stencil.subControlVolume(dofIdx).volume();
dofTotalVolume_[globalIdx] += dofVolume;
if (isInteriorElement)
gridTotalVolume_ += dofVolume;
gridTotalVolume_ += dofVolume;
}
}