| 76 | } |
| 77 | |
| 78 | void setup() { |
| 79 | // Use the malloc family for allocations |
| 80 | Alloc_Reset(); |
| 81 | |
| 82 | // Initialize GraphBLAS. |
| 83 | GrB_init(GrB_NONBLOCKING); |
| 84 | GxB_Global_Option_set(GxB_FORMAT, GxB_BY_ROW); // all matrices in CSR format |
| 85 | GxB_Global_Option_set(GxB_HYPER_SWITCH, GxB_NEVER_HYPER); // matrices are never hypersparse |
| 86 | } |
| 87 | |
| 88 | void tearDown() { |
| 89 | GrB_finalize(); |
nothing calls this directly
no test coverage detected