Skip to content

Commit

Permalink
Fix PhysicalPullback
Browse files Browse the repository at this point in the history
  • Loading branch information
pbrubeck committed Nov 14, 2024
1 parent 3be472e commit ee5f1da
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ufl/pullback.py
Original file line number Diff line number Diff line change
Expand Up @@ -560,6 +560,8 @@ def physical_value_shape(self, element, domain) -> typing.Tuple[int, ...]:
Returns:
The value shape when the pull back is applied to the given element
"""
if element.reference_value_shape == ():
return ()
raise NotImplementedError()


Expand Down

0 comments on commit ee5f1da

Please sign in to comment.