| 10 | #include "GB.h" |
| 11 | |
| 12 | GB_PUBLIC |
| 13 | GrB_Info GB_Matrix_check // check a GraphBLAS matrix |
| 14 | ( |
| 15 | const GrB_Matrix A, // GraphBLAS matrix to print and check |
| 16 | const char *name, // name of the matrix |
| 17 | int pr, // print level |
| 18 | FILE *f // file for output |
| 19 | ) |
| 20 | { |
| 21 | return (GB_matvec_check (A, name, pr, f, "matrix")) ; |
| 22 | } |
| 23 |
no test coverage detected