GNU Octave  4.4.1
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
oct-sparse.h
Go to the documentation of this file.
1 /*
2 
3 Copyright (C) 2005-2018 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
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11 
12 Octave is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License 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 <https://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_CCOLAMD_H)
39 # include <suitesparse/ccolamd.h>
40 #elif defined (HAVE_UFSPARSE_CCOLAMD_H)
41 # include <ufsparse/ccolamd.h>
42 #elif defined (HAVE_CCOLAMD_CCOLAMD_H)
43 # include <ccolamd/ccolamd.h>
44 #elif defined (HAVE_CCOLAMD_H)
45 # include <ccolamd.h>
46 #endif
47 
48 #if defined (HAVE_SUITESPARSE_CHOLMOD_H)
49 # include <suitesparse/cholmod.h>
50 #elif defined (HAVE_UFSPARSE_CHOLMOD_H)
51 # include <ufsparse/cholmod.h>
52 #elif defined (HAVE_CHOLMOD_CHOLMOD_H)
53 # include <cholmod/cholmod.h>
54 #elif defined (HAVE_CHOLMOD_H)
55 # include <cholmod.h>
56 #endif
57 
58 #if defined (HAVE_SUITESPARSE_COLAMD_H)
59 # include <suitesparse/colamd.h>
60 #elif defined (HAVE_UFSPARSE_COLAMD_H)
61 # include <ufsparse/colamd.h>
62 #elif defined (HAVE_COLAMD_COLAMD_H)
63 # include <colamd/colamd.h>
64 #elif defined (HAVE_COLAMD_H)
65 # include <colamd.h>
66 #endif
67 
68 #if defined (HAVE_SUITESPARSE_CS_H)
69 # include <suitesparse/cs.h>
70 #elif defined (HAVE_UFSPARSE_CS_H)
71 # include <ufsparse/cs.h>
72 #elif defined (HAVE_CXSPARSE_CS_H)
73 # include <cxsparse/cs.h>
74 #elif defined (HAVE_CS_H)
75 # include <cs.h>
76 #endif
77 
78 #if defined (HAVE_SUITESPARSE_UMFPACK_H)
79 # include <suitesparse/umfpack.h>
80 #elif defined (HAVE_UFSPARSE_UMFPACK_H)
81 # include <ufsparse/umfpack.h>
82 #elif defined (HAVE_UMFPACK_UMFPACK_H)
83 # include <umfpack/umfpack.h>
84 #elif defined (HAVE_UMFPACK_H)
85 # include <umfpack.h>
86 #endif
87 
88 // Cope with new SuiteSparse versions
89 
90 #if defined (SUITESPARSE_VERSION)
91 # if (SUITESPARSE_VERSION >= SUITESPARSE_VER_CODE (4, 3))
92 # define SUITESPARSE_NAME(name) SuiteSparse_ ## name
93 # define SUITESPARSE_ASSIGN_FPTR(f_name, f_var, f_assign) (SuiteSparse_config.f_name = f_assign)
94 # define SUITESPARSE_ASSIGN_FPTR2(f_name, f_var, f_assign) (SuiteSparse_config.f_name = SUITESPARSE_NAME (f_assign))
95 # else
96 # define SUITESPARSE_ASSIGN_FPTR(f_name, f_var, f_assign) (f_var = f_assign)
97 # define SUITESPARSE_ASSIGN_FPTR2(f_name, f_var, f_assign) (f_var = CHOLMOD_NAME (f_assign))
98 # endif
99 #endif
100 
101 // Function names depend on integer type.
102 
103 #if defined (HAVE_AMD)
104 # if defined (OCTAVE_ENABLE_64)
105 # define AMD_NAME(name) amd_l ## name
106 # else
107 # define AMD_NAME(name) amd ## name
108 # endif
109 #endif
110 
111 #if defined (HAVE_CCOLAMD)
112 # if defined (OCTAVE_ENABLE_64)
113 # define CCOLAMD_NAME(name) ccolamd_l ## name
114 # define CSYMAMD_NAME(name) csymamd_l ## name
115 # else
116 # define CCOLAMD_NAME(name) ccolamd ## name
117 # define CSYMAMD_NAME(name) csymamd ## name
118 # endif
119 #endif
120 
121 #if defined (HAVE_CHOLMOD)
122 # if defined (OCTAVE_ENABLE_64)
123 # define CHOLMOD_NAME(name) cholmod_l_ ## name
124 # else
125 # define CHOLMOD_NAME(name) cholmod_ ## name
126 # endif
127 #endif
128 
129 #if defined (HAVE_COLAMD)
130 # if defined (OCTAVE_ENABLE_64)
131 # define COLAMD_NAME(name) colamd_l ## name
132 # define SYMAMD_NAME(name) symamd_l ## name
133 # else
134 # define COLAMD_NAME(name) colamd ## name
135 # define SYMAMD_NAME(name) symamd ## name
136 # endif
137 #endif
138 
139 #if defined (HAVE_CXSPARSE)
140 # if defined (OCTAVE_ENABLE_64)
141 # define CXSPARSE_DNAME(name) cs_dl ## name
142 # define CXSPARSE_ZNAME(name) cs_cl ## name
143 # else
144 # define CXSPARSE_DNAME(name) cs_di ## name
145 # define CXSPARSE_ZNAME(name) cs_ci ## name
146 # endif
147 #endif
148 
149 #if defined (HAVE_UMFPACK)
150 # if defined (OCTAVE_ENABLE_64)
151 # define UMFPACK_DNAME(name) umfpack_dl_ ## name
152 # define UMFPACK_ZNAME(name) umfpack_zl_ ## name
153 # else
154 # define UMFPACK_DNAME(name) umfpack_di_ ## name
155 # define UMFPACK_ZNAME(name) umfpack_zi_ ## name
156 # endif
157 #endif
158 
159 #if (defined (HAVE_AMD) || defined (HAVE_CCOLAMD) \
160  || defined (HAVE_CHOLMOD) || defined (HAVE_COLAMD) \
161  || defined (HAVE_CXSPARSE) || defined (HAVE_UMFPACK))
162 
163 namespace octave
164 {
165 # if defined (OCTAVE_ENABLE_64)
166  typedef SuiteSparse_long suitesparse_integer;
167 # else
168  typedef int suitesparse_integer;
169 # endif
170 
171  extern suitesparse_integer *
173 
174  extern const suitesparse_integer *
176 
177  extern octave_idx_type*
179 
180  extern const octave_idx_type*
182 }
183 
184 #endif
185 #endif
octave_idx_type * to_octave_idx_type_ptr(suitesparse_integer *i)
Definition: oct-sparse.cc:64
int suitesparse_integer
Definition: oct-sparse.h:168
for i
Definition: data.cc:5264
suitesparse_integer * to_suitesparse_intptr(octave_idx_type *i)
Definition: oct-sparse.cc:48