We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 608e390 commit c090e0fCopy full SHA for c090e0f
1 file changed
include/subexpr.h
@@ -171,19 +171,6 @@ typedef struct matmul_expr
171
int *idx_map_Hg;
172
} matmul_expr;
173
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
185
- double *a; /* length equals node->size */
186
-} const_vector_mult_expr;
187
188
/* Index/slicing: y = child[indices] where indices is a list of flat positions */
189
typedef struct index_expr
0 commit comments