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