Skip to content

Commit

Permalink
Merge pull request #236 from mfem/fix_VectorLFBoundaryNormalIntegrator
Browse files Browse the repository at this point in the history
fixing  VectorFEBoundaryNormalLFIntegrator wrapping.
  • Loading branch information
sshiraiwa authored Aug 1, 2024
2 parents cfcf247 + cea2c51 commit 260b43f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mfem/common/generate_lininteg_ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
pp = " self._coeff = QF"
elif line.find(", F)") != -1:
pp = " self._coeff = F"
elif line.find(", f)") != -1:
pp = " self._coeff = f"
elif line.find(", f, s=1.0, ir=None)") != -1:
pp = " self._coeff = (f, ir)"
elif line.find(", uD_, lambda_, mu_, alpha_, kappa_)") != -1:
Expand Down

0 comments on commit 260b43f

Please sign in to comment.