Mercurial > hg > octave-nkf
annotate liboctave/oct-sparse.h @ 14626:f947d2922feb stable rc-3-6-2-0
3.6.2-rc0 release candidate
* configure.ac (AC_INIT): Version is now 3.6.2-rc0.
(OCTAVE_RELEASE_DATE): Now 2012-05-11.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Fri, 11 May 2012 13:46:18 -0400 |
parents | 72c96de7a403 |
children |
rev | line source |
---|---|
5512 | 1 /* |
2 | |
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
3 Copyright (C) 2005-2012 David Bateman |
5512 | 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 | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
5512 | 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 | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
5512 | 20 |
21 */ | |
22 | |
23 #if !defined (oct_sparse_h) | |
24 #define oct_sparse_h 1 | |
25 | |
7619 | 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 | |
6231 | 36 #if defined (HAVE_SUITESPARSE_UMFPACK_H) |
37 #include <suitesparse/umfpack.h> | |
6186 | 38 #elif defined (HAVE_UFSPARSE_UMFPACK_H) |
5512 | 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 | |
6231 | 46 #if defined (HAVE_SUITESPARSE_COLAMD_H) |
47 #include <suitesparse/colamd.h> | |
6186 | 48 #elif defined (HAVE_UFSPARSE_COLAMD_H) |
5512 | 49 #include <ufsparse/colamd.h> |
5610 | 50 #elif defined (HAVE_COLAMD_COLAMD_H) |
51 #include <colamd/colamd.h> | |
5512 | 52 #elif defined (HAVE_COLAMD_H) |
53 #include <colamd.h> | |
54 #endif | |
55 | |
6231 | 56 #if defined (HAVE_SUITESPARSE_CCOLAMD_H) |
57 #include <suitesparse/ccolamd.h> | |
6186 | 58 #elif defined (HAVE_UFSPARSE_CCOLAMD_H) |
5512 | 59 #include <ufsparse/ccolamd.h> |
5610 | 60 #elif defined (HAVE_CCOLAMD_CCOLAMD_H) |
61 #include <ccolamd/ccolamd.h> | |
5512 | 62 #elif defined (HAVE_CCOLAMD_H) |
63 #include <ccolamd.h> | |
64 #endif | |
65 | |
6231 | 66 #if defined (HAVE_SUITESPARSE_CHOLMOD_H) |
67 #include <suitesparse/cholmod.h> | |
6186 | 68 #elif defined (HAVE_UFSPARSE_CHOLMOD_H) |
5512 | 69 #include <ufsparse/cholmod.h> |
6236 | 70 #elif defined (HAVE_CHOLMOD_CHOLMOD_H) |
5610 | 71 #include <cholmod/cholmod.h> |
5512 | 72 #elif defined (HAVE_CHOLMOD_H) |
73 #include <cholmod.h> | |
74 #endif | |
75 | |
6231 | 76 #if defined (HAVE_SUITESPARSE_CS_H) |
77 #include <suitesparse/cs.h> | |
6186 | 78 #elif defined (HAVE_UFSPARSE_CS_H) |
5648 | 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> | |
5610 | 84 #endif |
85 | |
6231 | 86 #if (defined (HAVE_SUITESPARSE_CHOLMOD_H) \ |
6186 | 87 || defined (HAVE_UFSPARSE_CHOLMOD_H) \ |
6236 | 88 || defined (HAVE_CHOLMOD_CHOLMOD_H) \ |
5512 | 89 || defined (HAVE_CHOLMOD_H)) |
90 #ifdef IDX_TYPE_LONG | |
91 #define CHOLMOD_NAME(name) cholmod_l_ ## name | |
92 #else | |
93 #define CHOLMOD_NAME(name) cholmod_ ## name | |
94 #endif | |
95 #endif | |
96 | |
97 #endif |