Skip to content

Commit 01c6f82

Browse files
Transurgeonclaude
andcommitted
Clean up comments in bivariate.h and subexpr.h
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 978f319 commit 01c6f82

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

include/bivariate.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ expr *new_const_scalar_mult(double a, expr *child);
4242
/* Constant vector elementwise multiplication: a ∘ f(x) where a is constant */
4343
expr *new_const_vector_mult(const double *a, expr *child);
4444

45-
/* Left matrix multiplication with parameter source: P @ f(x) where P is a parameter
46-
*/
45+
/* Left matrix multiplication: P @ f(x) where P is a parameter */
4746
expr *new_left_param_matmul(expr *param_node, expr *child);
4847

4948
/* Parameter scalar multiplication: p * f(x) where p is a parameter */

include/subexpr.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,7 @@ typedef struct left_matmul_expr
118118
CSR_Matrix *A;
119119
CSR_Matrix *AT;
120120
CSC_Matrix *CSC_work;
121-
expr *
122-
param_source; /* if non-NULL, refresh A/AT values from param_source->value */
121+
expr *param_source;
123122
int src_m, src_n; /* original (non-block-diag) matrix dimensions */
124123
} left_matmul_expr;
125124

0 commit comments

Comments
 (0)