1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
//------------------------------------------------------------------------------
// GB_coverage.c: global array for Tcov test coverage
//------------------------------------------------------------------------------
// SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2025, All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
//------------------------------------------------------------------------------
#include "GB.h"
// global array for test coverage
int64_t GB_cov [GBCOVER_MAX] ;
|