From cea2c51aaf6278b1d08c22a2b556918ba09d464f Mon Sep 17 00:00:00 2001 From: Syun'ichi Shiraiwa Date: Thu, 1 Aug 2024 09:59:02 -0400 Subject: [PATCH] fixing VectorFEBoundaryNormalLFIntegrator wrapping. this is a newly added integrator having a coefficient as a constructor argument --- mfem/common/generate_lininteg_ext.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mfem/common/generate_lininteg_ext.py b/mfem/common/generate_lininteg_ext.py index a8c943e4..6d3c272d 100644 --- a/mfem/common/generate_lininteg_ext.py +++ b/mfem/common/generate_lininteg_ext.py @@ -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: