Skip to content

Commit

Permalink
Merge branch 'pbrubeck/fix/enriched-mixed-degree' of github.com:fired…
Browse files Browse the repository at this point in the history
…rakeproject/fiat into pbrubeck/fix/enriched-mixed-degree
  • Loading branch information
pbrubeck committed Nov 15, 2023
2 parents 32d63e1 + 355718a commit 4c74b28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FIAT/nodal_enriched.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def __init__(self, *elements):
"of NodalEnrichedElement are nodal")

# Extract common data
degree = min(e.get_nodal_basis().get_degree() for e in elements)
degree = max(e.get_nodal_basis().get_degree() for e in elements)
embedded_degree = max(e.get_nodal_basis().get_embedded_degree()
for e in elements)
order = max(e.get_order() for e in elements)
Expand Down

0 comments on commit 4c74b28

Please sign in to comment.