1function c = grb_get_coverage
2%GRB_GET_COVERAGE return current statement coverage
3
4% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
5% SPDX-License-Identifier: Apache-2.0
6
7c = 0 ;
8try
9    global GraphBLAS_debug GraphBLAS_grbcov
10    c = sum (GraphBLAS_grbcov > 0) ;
11catch
12end
13
14