File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 */
4343expr * 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 */
4746expr * new_left_param_matmul (expr * param_node , expr * child );
4847
4948/* Parameter scalar multiplication: p * f(x) where p is a parameter */
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments