Skip to content

Commit 3a23c26

Browse files
committed
added comment
1 parent f8f3fdc commit 3a23c26

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/affine/linear_op.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ expr *new_linear(expr *u, const CSR_Matrix *A)
4343
lin_node->A_csr = new_csr_matrix(A->m, A->n, A->nnz);
4444
copy_csr_matrix(A, lin_node->A_csr);
4545
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. */
4648
node->jacobian = lin_node->A_csr;
4749

4850
return node;

0 commit comments

Comments
 (0)