Skip to content
Snippets Groups Projects
Commit 9f97efb3 authored by Isuru Fernando's avatar Isuru Fernando
Browse files

Fix coeff_matrix

parent 424e616d
No related branches found
No related tags found
2 merge requests!80WIP: Inducer mpole improvements v2,!68Specify the PDE symbolically
......@@ -420,7 +420,7 @@ class NewLinearRecurrenceBasedDerivativeWrangler \
for i in range(s.shape[0]):
for j in range(s.shape[1]):
if np.abs(s[i][j]) > tol:
coeff_matrix[i].append((j, s[i][j]))
coeff_matrix[j].append((i, s[i][j]))
logger.debug("computing recurrence for Taylor coefficients: "
"done after {dur:.2f} seconds"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment