Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgensd committed Sep 1, 2022
1 parent 6920ddb commit 943263d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ffcx/naming.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ def compute_signature(ufl_objects: typing.List[
domains.append(*arg.ufl_function_space().ufl_domains())
for gc in ufl.algorithms.analysis.extract_type(expr, ufl.classes.GeometricQuantity):
domains.append(*gc.ufl_domains())

for const in consts:
domains.append(const.ufl_domain())
domains = ufl.algorithms.analysis.unique_tuple(domains)
rn.update(dict((d, i) for i, d in enumerate(domains)))

Expand Down

0 comments on commit 943263d

Please sign in to comment.