blob: 44e16df829d5946d71ac9c96f1c932fea1973085 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/* ========================================================================== */
/* === umfpack_timer ======================================================== */
/* ========================================================================== */
/* -------------------------------------------------------------------------- */
/* Copyright (c) 2005-2012 by Timothy A. Davis, http://www.suitesparse.com. */
/* All Rights Reserved. See ../Doc/License for License. */
/* -------------------------------------------------------------------------- */
double umfpack_timer ( void ) ;
/*
Syntax (for all versions: di, dl, zi, and zl):
#include "umfpack.h"
double t ;
t = umfpack_timer ( ) ;
Purpose:
Returns the current wall clock time on POSIX C 1993 systems.
Arguments:
None.
*/
|