Skip to content

Commit 409cb8f

Browse files
committed
Logic fix
1 parent 0c2ab56 commit 409cb8f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ffcx/analysis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@ def analyze_ufl_objects(
115115
coordinate_elements += data.coordinate_elements
116116

117117
# Loop through forms to extract interpolate operands
118-
current_coeffs = data.reduced_coefficients.copy()
119118
new_coefficients = []
120119
for data in form_data:
120+
current_coeffs = data.reduced_coefficients.copy()
121121
for coeff in current_coeffs:
122122
if isinstance(coeff, ProxyCoefficient):
123123
# Expose expression used for interpolation to generated code

0 commit comments

Comments
 (0)