Skip to content

Commit

Permalink
Add docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgensd committed Dec 5, 2024
1 parent 58800e7 commit 047ded5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ufl/algorithms/apply_geometry_lowering.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ def facet_jacobian_determinant(self, o):

@memoized_handler
def edge_jacobian(self, o):
"""Apply to edge_jacobian."""
if self._preserve_types[o._ufl_typecode_]:
return o

Expand All @@ -179,6 +180,7 @@ def edge_jacobian(self, o):

@memoized_handler
def edge_jacobian_inverse(self, o):
"""Apply to edge_jacobian_inverse."""
if self._preserve_types[o._ufl_typecode_]:
return o

Expand All @@ -188,6 +190,7 @@ def edge_jacobian_inverse(self, o):

@memoized_handler
def edge_jacobian_determinant(self, o):
"""Apply to edge_jacobian_determinant."""
if self._preserve_types[o._ufl_typecode_]:
return o

Expand Down

0 comments on commit 047ded5

Please sign in to comment.