From 047ded5b3b92118453242b27eac3d46d7ffdcac1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20S=2E=20Dokken?= Date: Thu, 5 Dec 2024 14:52:16 +0100 Subject: [PATCH] Add docstrings --- ufl/algorithms/apply_geometry_lowering.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ufl/algorithms/apply_geometry_lowering.py b/ufl/algorithms/apply_geometry_lowering.py index 0daac08ad..75c512e52 100644 --- a/ufl/algorithms/apply_geometry_lowering.py +++ b/ufl/algorithms/apply_geometry_lowering.py @@ -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 @@ -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 @@ -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