Amesos Package Browser (Single Doxygen Collection)  Development
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
amesos_colamd_global.c
Go to the documentation of this file.
1 /* ========================================================================== */
2 /* === colamd_global.c ====================================================== */
3 /* ========================================================================== */
4 
5 /* ----------------------------------------------------------------------------
6  * COLAMD, Copyright (C) 2007, Timothy A. Davis.
7  * See License.txt for the Version 2.1 of the GNU Lesser General Public License
8  * http://www.cise.ufl.edu/research/sparse
9  * -------------------------------------------------------------------------- */
10 
11 /* Global variables for COLAMD */
12 
13 #ifndef NPRINT
14 #ifdef MATLAB_MEX_FILE
15 #include "mex.h"
16 int (*amesos_colamd_printf) (const char *, ...) = mexPrintf ;
17 #else
18 #include <stdio.h>
19 int (*amesos_colamd_printf) (const char *, ...) = printf ;
20 #endif
21 #else
22 int (*amesos_colamd_printf) (const char *, ...) = ((void *) 0) ;
23 #endif
24 
int(* amesos_colamd_printf)(const char *,...)