Skip to content

Commit c090e0f

Browse files
committed
remove unused constructors
1 parent 608e390 commit c090e0f

1 file changed

Lines changed: 0 additions & 13 deletions

File tree

include/subexpr.h

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -171,19 +171,6 @@ typedef struct matmul_expr
171171
int *idx_map_Hg;
172172
} matmul_expr;
173173

174-
/* Constant scalar multiplication: y = a * child where a is a constant double */
175-
typedef struct const_scalar_mult_expr
176-
{
177-
expr base;
178-
double a;
179-
} const_scalar_mult_expr;
180-
181-
/* Constant vector elementwise multiplication: y = a \circ child for constant a */
182-
typedef struct const_vector_mult_expr
183-
{
184-
expr base;
185-
double *a; /* length equals node->size */
186-
} const_vector_mult_expr;
187174

188175
/* Index/slicing: y = child[indices] where indices is a list of flat positions */
189176
typedef struct index_expr

0 commit comments

Comments
 (0)