GNU Octave  4.0.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
oct-sparse.h
Go to the documentation of this file.
1 /*
2 
3 Copyright (C) 2005-2015 David Bateman
4 
5 This file is part of Octave.
6 
7 Octave is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 3 of the License, or (at your
10 option) any later version.
11 
12 Octave is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16 
17 You should have received a copy of the GNU General Public License
18 along with Octave; see the file COPYING. If not, see
19 <http://www.gnu.org/licenses/>.
20 
21 */
22 
23 #if !defined (octave_oct_sparse_h)
24 #define octave_oct_sparse_h 1
25 
26 #if defined (HAVE_SUITESPARSE_AMD_H)
27 #include <suitesparse/amd.h>
28 #elif defined (HAVE_UFSPARSE_AMD_H)
29 #include <ufsparse/amd.h>
30 #elif defined (HAVE_AMD_AMD_H)
31 #include <amd/amd.h>
32 #elif defined (HAVE_AMD_H)
33 #include <amd.h>
34 #endif
35 
36 #if defined (HAVE_SUITESPARSE_UMFPACK_H)
37 #include <suitesparse/umfpack.h>
38 #elif defined (HAVE_UFSPARSE_UMFPACK_H)
39 #include <ufsparse/umfpack.h>
40 #elif defined (HAVE_UMFPACK_UMFPACK_H)
41 #include <umfpack/umfpack.h>
42 #elif defined (HAVE_UMFPACK_H)
43 #include <umfpack.h>
44 #endif
45 
46 #if defined (HAVE_SUITESPARSE_COLAMD_H)
47 #include <suitesparse/colamd.h>
48 #elif defined (HAVE_UFSPARSE_COLAMD_H)
49 #include <ufsparse/colamd.h>
50 #elif defined (HAVE_COLAMD_COLAMD_H)
51 #include <colamd/colamd.h>
52 #elif defined (HAVE_COLAMD_H)
53 #include <colamd.h>
54 #endif
55 
56 #if defined (HAVE_SUITESPARSE_CCOLAMD_H)
57 #include <suitesparse/ccolamd.h>
58 #elif defined (HAVE_UFSPARSE_CCOLAMD_H)
59 #include <ufsparse/ccolamd.h>
60 #elif defined (HAVE_CCOLAMD_CCOLAMD_H)
61 #include <ccolamd/ccolamd.h>
62 #elif defined (HAVE_CCOLAMD_H)
63 #include <ccolamd.h>
64 #endif
65 
66 #if defined (HAVE_SUITESPARSE_CHOLMOD_H)
67 #include <suitesparse/cholmod.h>
68 #elif defined (HAVE_UFSPARSE_CHOLMOD_H)
69 #include <ufsparse/cholmod.h>
70 #elif defined (HAVE_CHOLMOD_CHOLMOD_H)
71 #include <cholmod/cholmod.h>
72 #elif defined (HAVE_CHOLMOD_H)
73 #include <cholmod.h>
74 #endif
75 
76 #if defined (HAVE_SUITESPARSE_CS_H)
77 #include <suitesparse/cs.h>
78 #elif defined (HAVE_UFSPARSE_CS_H)
79 #include <ufsparse/cs.h>
80 #elif defined (HAVE_CXSPARSE_CS_H)
81 #include <cxsparse/cs.h>
82 #elif defined (HAVE_CS_H)
83 #include <cs.h>
84 #endif
85 
86 #if (defined (HAVE_SUITESPARSE_CHOLMOD_H) \
87  || defined (HAVE_UFSPARSE_CHOLMOD_H) \
88  || defined (HAVE_CHOLMOD_CHOLMOD_H) \
89  || defined (HAVE_CHOLMOD_H))
90 #ifdef USE_64_BIT_IDX_T
91 #define CHOLMOD_NAME(name) cholmod_l_ ## name
92 #else
93 #define CHOLMOD_NAME(name) cholmod_ ## name
94 #endif
95 #endif
96 
97 // Cope with new suitesparse versions
98 //
99 #if defined (SUITESPARSE_VERSION)
100 # if SUITESPARSE_VERSION >= SUITESPARSE_VER_CODE (4, 3)
101 # define SUITESPARSE_NAME(name) SuiteSparse_ ## name
102 # define SUITESPARSE_ASSIGN_FPTR(f_name, f_var, f_assign) (SuiteSparse_config.f_name = f_assign)
103 # define SUITESPARSE_ASSIGN_FPTR2(f_name, f_var, f_assign) (SuiteSparse_config.f_name = SUITESPARSE_NAME (f_assign))
104 # else
105 # define SUITESPARSE_ASSIGN_FPTR(f_name, f_var, f_assign) (f_var = f_assign)
106 # define SUITESPARSE_ASSIGN_FPTR2(f_name, f_var, f_assign) (f_var = CHOLMOD_NAME (f_assign))
107 # endif
108 #endif
109 
110 #endif