We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8f3fdc commit 3a23c26Copy full SHA for 3a23c26
1 file changed
src/affine/linear_op.c
@@ -43,6 +43,8 @@ expr *new_linear(expr *u, const CSR_Matrix *A)
43
lin_node->A_csr = new_csr_matrix(A->m, A->n, A->nnz);
44
copy_csr_matrix(A, lin_node->A_csr);
45
lin_node->A_csc = csr_to_csc(A);
46
+
47
+ /* what if we have A @ phi(x). Then I don't think this is correct. */
48
node->jacobian = lin_node->A_csr;
49
50
return node;
0 commit comments