We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0029c21 commit 2fda42cCopy full SHA for 2fda42c
ffcx/codegeneration/form.py
@@ -98,7 +98,8 @@ def generator(ir, options):
98
integrals = []
99
integral_ids = []
100
integral_offsets = [0]
101
- for itg_type in ("cell", "interior_facet", "exterior_facet"):
+ # NOTE: This ordering is dependent of the enums in dolfinx::fem::IntegralType
102
+ for itg_type in ("cell", "exterior_facet", "interior_facet"):
103
for key, name in ir.integral_names[itg_type].items():
104
for subdomain_id in ir.subdomain_ids[itg_type][key]:
105
integrals += [L.AddressOf(L.Symbol(name))]
0 commit comments