| 10 | #include "src/graph/rg_matrix/rg_matrix_iter.h" |
| 11 | |
| 12 | void setup() { |
| 13 | Alloc_Reset(); |
| 14 | |
| 15 | // initialize GraphBLAS |
| 16 | GrB_init(GrB_NONBLOCKING); |
| 17 | |
| 18 | // all matrices in CSR format |
| 19 | GxB_Global_Option_set(GxB_FORMAT, GxB_BY_ROW); |
| 20 | |
| 21 | // set delta matrix flush threshold |
| 22 | Config_Option_set(Config_DELTA_MAX_PENDING_CHANGES, "10000", NULL); |
| 23 | } |
| 24 | |
| 25 | void tearDown() { |
| 26 | GrB_finalize(); |
nothing calls this directly
no test coverage detected