Skip to content

Commit

Permalink
Minor fix (#588)
Browse files Browse the repository at this point in the history
* Fix ordering
  • Loading branch information
chrisrichardson authored Aug 11, 2023
1 parent 57e11c8 commit a6c7572
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ffcx/codegeneration/form.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def generator(ir, options):
integrals = []
integral_ids = []
integral_offsets = [0]
for itg_type in ("cell", "interior_facet", "exterior_facet"):
for itg_type in ("cell", "exterior_facet", "interior_facet"):
integrals += [L.AddressOf(L.Symbol(itg)) for itg in ir.integral_names[itg_type]]
integral_ids += ir.subdomain_ids[itg_type]
integral_offsets.append(len(integrals))
Expand Down

0 comments on commit a6c7572

Please sign in to comment.