38 #ifndef _SUITESPARSECONFIG_H 39 #define _SUITESPARSECONFIG_H 52 #ifndef SuiteSparse_long 57 #define SuiteSparse_long __int64 58 #define SuiteSparse_long_max _I64_MAX 59 #define SuiteSparse_long_idd "I64d" 63 #define SuiteSparse_long long 64 #define SuiteSparse_long_max LONG_MAX 65 #define SuiteSparse_long_idd "ld" 68 #define SuiteSparse_long_id "%" SuiteSparse_long_idd 74 #define UF_long SuiteSparse_long 75 #define UF_long_max SuiteSparse_long_max 76 #define UF_long_idd SuiteSparse_long_idd 77 #define UF_long_id SuiteSparse_long_id 88 void *(*malloc_memory) (size_t) ;
89 void *(*realloc_memory) (
void *, size_t) ;
90 void (*free_memory) (
void *) ;
91 void *(*calloc_memory) (size_t, size_t) ;
95 void *SuiteSparse_malloc
100 SuiteSparse_config *config
103 void *SuiteSparse_free
106 SuiteSparse_config *config
114 double SuiteSparse_toc
119 double SuiteSparse_time
126 #ifdef _POSIX_C_SOURCE 127 #if _POSIX_C_SOURCE >= 199309L 128 #define SUITESPARSE_TIMER_ENABLED 169 #define SUITESPARSE_DATE "July 17, 2012" 170 #define SUITESPARSE_VER_CODE(main,sub) ((main) * 1000 + (sub)) 171 #define SUITESPARSE_MAIN_VERSION 4 172 #define SUITESPARSE_SUB_VERSION 0 173 #define SUITESPARSE_SUBSUB_VERSION 2 174 #define SUITESPARSE_VERSION \ 175 SUITESPARSE_VER_CODE(SUITESPARSE_MAIN_VERSION,SUITESPARSE_SUB_VERSION) void tic(qp_timer *t)
timer tic functions, similar to matlab tic, starts recording time from the instant the function is in...
Definition: timer.c:46
Definition: SuiteSparse_config.h:86