Skip to content

Commit 1d8d50d

Browse files
committed
k
1 parent a5dbb11 commit 1d8d50d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tsfc/kernel_interface/firedrake_loopy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,8 +377,8 @@ def set_entity_orientations(self, domains):
377377
'-': gem.OrientationVariableIndex(gem.Indexed(o, (0,)))
378378
}
379379
else:
380-
cell_orientation = gem.Variable(f'cell_orientation_{i}', (1,), dtype=gem.uint_type)
381-
self._entity_orientations[domain] = {None: gem.OrientationVariableIndex(gem.Indexed(cell_orientation, (0,))), }
380+
o = gem.Variable(variable_name, (1,), dtype=gem.uint_type)
381+
self._entity_orientations[domain] = {None: gem.OrientationVariableIndex(gem.Indexed(o, (0,))), }
382382

383383
def set_coefficients(self):
384384
"""Prepare the coefficients of the form."""

0 commit comments

Comments
 (0)