1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
//------------------------------------------------------------------------------
// GB_clear.h: definitions for GB_clear
//------------------------------------------------------------------------------
// SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
//------------------------------------------------------------------------------
#ifndef GB_CLEAR_H
#define GB_CLEAR_H
GrB_Info GB_clear // clear a matrix, type and dimensions unchanged
(
GrB_Matrix A, // matrix to clear
GB_Context Context
) ;
#endif
|