| 205 | } |
| 206 | |
| 207 | void setup() { |
| 208 | // Use the malloc family for allocations |
| 209 | Alloc_Reset(); |
| 210 | |
| 211 | // Initialize GraphBLAS. |
| 212 | GrB_init(GrB_NONBLOCKING); |
| 213 | |
| 214 | GxB_Global_Option_set(GxB_FORMAT, GxB_BY_ROW); // all matrices in CSR format |
| 215 | GxB_Global_Option_set(GxB_HYPER_SWITCH, GxB_NEVER_HYPER); // matrices are never hypersparse |
| 216 | srand(time(NULL)); |
| 217 | } |
| 218 | |
| 219 | void tearDown() { |
| 220 | GrB_finalize(); |
nothing calls this directly
no test coverage detected