Skip to content

Commit bf8a55c

Browse files
Transurgeonclaude
andcommitted
Run clang-format on merge-resolved files
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 9c23b40 commit bf8a55c

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

include/subexpr.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ typedef struct left_matmul_expr
121121
CSC_Matrix *Jchild_CSC;
122122
CSC_Matrix *J_CSC;
123123
int *csc_to_csr_workspace;
124-
expr *param_source; /* if non-NULL, A/AT values come from this parameter */
125-
int src_m, src_n; /* original matrix dimensions */
124+
expr *param_source; /* if non-NULL, A/AT values come from this parameter */
125+
int src_m, src_n; /* original matrix dimensions */
126126
} left_matmul_expr;
127127

128128
/* Right matrix multiplication: y = f(x) * A where f(x) is an expression.

src/bivariate/left_matmul.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,7 @@ static void free_type_data(expr *node)
101101
free_csc_matrix(lin_node->Jchild_CSC);
102102
free_csc_matrix(lin_node->J_CSC);
103103
free(lin_node->csc_to_csr_workspace);
104-
if (lin_node->param_source)
105-
free_expr(lin_node->param_source);
104+
if (lin_node->param_source) free_expr(lin_node->param_source);
106105
lin_node->A = NULL;
107106
lin_node->AT = NULL;
108107
lin_node->Jchild_CSC = NULL;

0 commit comments

Comments
 (0)