1 //------------------------------------------------------------------------------
2 // GB_AxB_saxpy3_sym_mss: symbolic analysis for GB_AxB_saxpy3
3 //------------------------------------------------------------------------------
4 
5 // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
6 // SPDX-License-Identifier: Apache-2.0
7 
8 //------------------------------------------------------------------------------
9 
10 // C<M> = A*B, both A and B are sparse
11 
12 #define GB_MASK_A_B_SUFFIX _mss
13 
14 #define GB_NO_MASK   0
15 #define GB_MASK_COMP 0
16 
17 #define GB_A_IS_SPARSE 1
18 #define GB_A_IS_HYPER  0
19 #define GB_A_IS_BITMAP 0
20 #define GB_A_IS_FULL   0
21 
22 #define GB_B_IS_SPARSE 1
23 #define GB_B_IS_HYPER  0
24 #define GB_B_IS_BITMAP 0
25 #define GB_B_IS_FULL   0
26 
27 #include "GB_AxB_saxpy3_symbolic_template.c"
28 
29