1 //------------------------------------------------------------------------------
2 // GB_mx_clear_time: clear the time and start the timer
3 //------------------------------------------------------------------------------
4 
5 // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
6 // SPDX-License-Identifier: Apache-2.0
7 
8 //------------------------------------------------------------------------------
9 
10 #include "GB_mex.h"
11 
GB_mx_clear_time()12 void GB_mx_clear_time ( )               // clear the time and start the tic
13 {
14 
15     grbtime = 0 ;
16     tic [0] = 0 ;
17     tic [1] = 0 ;
18 
19     simple_tic (tic) ;
20 }
21 
22