GNU Octave  4.2.1
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-2017 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 #include "octave-config.h"
27 
28 #if defined (HAVE_SUITESPARSE_AMD_H)
29 # include <suitesparse/amd.h>
30 #elif defined (HAVE_UFSPARSE_AMD_H)
31 # include <ufsparse/amd.h>
32 #elif defined (HAVE_AMD_AMD_H)
33 # include <amd/amd.h>
34 #elif defined (HAVE_AMD_H)
35 # include <amd.h>
36 #endif
37 
38 #if defined (HAVE_SUITESPARSE_UMFPACK_H)
39 # include <suitesparse/umfpack.h>
40 #elif defined (HAVE_UFSPARSE_UMFPACK_H)
41 # include <ufsparse/umfpack.h>
42 #elif defined (HAVE_UMFPACK_UMFPACK_H)
43 # include <umfpack/umfpack.h>
44 #elif defined (HAVE_UMFPACK_H)
45 # include <umfpack.h>
46 #endif
47 
48 #if defined (HAVE_SUITESPARSE_COLAMD_H)
49 # include <suitesparse/colamd.h>
50 #elif defined (HAVE_UFSPARSE_COLAMD_H)
51 # include <ufsparse/colamd.h>
52 #elif defined (HAVE_COLAMD_COLAMD_H)
53 # include <colamd/colamd.h>
54 #elif defined (HAVE_COLAMD_H)
55 # include <colamd.h>
56 #endif
57 
58 #if defined (HAVE_SUITESPARSE_CCOLAMD_H)
59 # include <suitesparse/ccolamd.h>
60 #elif defined (HAVE_UFSPARSE_CCOLAMD_H)
61 # include <ufsparse/ccolamd.h>
62 #elif defined (HAVE_CCOLAMD_CCOLAMD_H)
63 # include <ccolamd/ccolamd.h>
64 #elif defined (HAVE_CCOLAMD_H)
65 # include <ccolamd.h>
66 #endif
67 
68 #if defined (HAVE_SUITESPARSE_CHOLMOD_H)
69 # include <suitesparse/cholmod.h>
70 #elif defined (HAVE_UFSPARSE_CHOLMOD_H)
71 # include <ufsparse/cholmod.h>
72 #elif defined (HAVE_CHOLMOD_CHOLMOD_H)
73 # include <cholmod/cholmod.h>
74 #elif defined (HAVE_CHOLMOD_H)
75 # include <cholmod.h>
76 #endif
77 
78 #if defined (HAVE_SUITESPARSE_CS_H)
79 # include <suitesparse/cs.h>
80 #elif defined (HAVE_UFSPARSE_CS_H)
81 # include <ufsparse/cs.h>
82 #elif defined (HAVE_CXSPARSE_CS_H)
83 # include <cxsparse/cs.h>
84 #elif defined (HAVE_CS_H)
85 # include <cs.h>
86 #endif
87 
88 #if (defined (HAVE_SUITESPARSE_CHOLMOD_H) \
89  || defined (HAVE_UFSPARSE_CHOLMOD_H) \
90  || defined (HAVE_CHOLMOD_CHOLMOD_H) \
91  || defined (HAVE_CHOLMOD_H))
92 # if defined (OCTAVE_ENABLE_64)
93 # define CHOLMOD_NAME(name) cholmod_l_ ## name
94 # else
95 # define CHOLMOD_NAME(name) cholmod_ ## name
96 # endif
97 #endif
98 
99 // Cope with new SuiteSparse versions
100 
101 #if defined (SUITESPARSE_VERSION)
102 # if (SUITESPARSE_VERSION >= SUITESPARSE_VER_CODE (4, 3))
103 # define SUITESPARSE_NAME(name) SuiteSparse_ ## name
104 # define SUITESPARSE_ASSIGN_FPTR(f_name, f_var, f_assign) (SuiteSparse_config.f_name = f_assign)
105 # define SUITESPARSE_ASSIGN_FPTR2(f_name, f_var, f_assign) (SuiteSparse_config.f_name = SUITESPARSE_NAME (f_assign))
106 # else
107 # define SUITESPARSE_ASSIGN_FPTR(f_name, f_var, f_assign) (f_var = f_assign)
108 # define SUITESPARSE_ASSIGN_FPTR2(f_name, f_var, f_assign) (f_var = CHOLMOD_NAME (f_assign))
109 # endif
110 #endif
111 
112 #if defined (HAVE_CXSPARSE)
113 # if defined (OCTAVE_ENABLE_64)
114 # define CXSPARSE_DNAME(name) cs_dl ## name
115 # define CXSPARSE_ZNAME(name) cs_cl ## name
116 # else
117 # define CXSPARSE_DNAME(name) cs_di ## name
118 # define CXSPARSE_ZNAME(name) cs_ci ## name
119 # endif
120 #endif
121 
122 #if defined (HAVE_UMFPACK)
123 # if defined (OCTAVE_ENABLE_64)
124 # define UMFPACK_DNAME(name) umfpack_dl_ ## name
125 # define UMFPACK_ZNAME(name) umfpack_zl_ ## name
126 # else
127 # define UMFPACK_DNAME(name) umfpack_di_ ## name
128 # define UMFPACK_ZNAME(name) umfpack_zi_ ## name
129 # endif
130 #endif
131 
132 #endif