annotate liboctave/oct-sparse.h @ 14704:551566201318 stable release-3-6-2

Version 3.6.2 released. * configure.ac (AC_INIT): Version is now 3.6.2. (OCTAVE_RELEASE_DATE): Now 2012-05-31.
author John W. Eaton <jwe@octave.org>
date Thu, 31 May 2012 11:22:15 -0400
parents 72c96de7a403
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5512
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
1 /*
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
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
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
4
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
5 This file is part of Octave.
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
6
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
7 Octave is free software; you can redistribute it and/or modify it
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6662
diff changeset
9 Free Software Foundation; either version 3 of the License, or (at your
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6662
diff changeset
10 option) any later version.
5512
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
11
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
12 Octave is distributed in the hope that it will be useful, but WITHOUT
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
15 for more details.
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
16
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6662
diff changeset
18 along with Octave; see the file COPYING. If not, see
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6662
diff changeset
19 <http://www.gnu.org/licenses/>.
5512
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
20
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
21 */
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
22
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
23 #if !defined (oct_sparse_h)
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
24 #define oct_sparse_h 1
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
25
7619
56012914972a Add the amd function
David Bateman <dbateman@free.fr>
parents: 7036
diff changeset
26 #if defined (HAVE_SUITESPARSE_AMD_H)
56012914972a Add the amd function
David Bateman <dbateman@free.fr>
parents: 7036
diff changeset
27 #include <suitesparse/amd.h>
56012914972a Add the amd function
David Bateman <dbateman@free.fr>
parents: 7036
diff changeset
28 #elif defined (HAVE_UFSPARSE_AMD_H)
56012914972a Add the amd function
David Bateman <dbateman@free.fr>
parents: 7036
diff changeset
29 #include <ufsparse/amd.h>
56012914972a Add the amd function
David Bateman <dbateman@free.fr>
parents: 7036
diff changeset
30 #elif defined (HAVE_AMD_AMD_H)
56012914972a Add the amd function
David Bateman <dbateman@free.fr>
parents: 7036
diff changeset
31 #include <amd/amd.h>
56012914972a Add the amd function
David Bateman <dbateman@free.fr>
parents: 7036
diff changeset
32 #elif defined (HAVE_AMD_H)
56012914972a Add the amd function
David Bateman <dbateman@free.fr>
parents: 7036
diff changeset
33 #include <amd.h>
56012914972a Add the amd function
David Bateman <dbateman@free.fr>
parents: 7036
diff changeset
34 #endif
56012914972a Add the amd function
David Bateman <dbateman@free.fr>
parents: 7036
diff changeset
35
6231
82021cf7e53a [project @ 2007-01-08 19:53:35 by dbateman]
dbateman
parents: 6186
diff changeset
36 #if defined (HAVE_SUITESPARSE_UMFPACK_H)
82021cf7e53a [project @ 2007-01-08 19:53:35 by dbateman]
dbateman
parents: 6186
diff changeset
37 #include <suitesparse/umfpack.h>
6186
237a7f535bbc [project @ 2006-11-28 20:13:39 by dbateman]
dbateman
parents: 5648
diff changeset
38 #elif defined (HAVE_UFSPARSE_UMFPACK_H)
5512
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
39 #include <ufsparse/umfpack.h>
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
40 #elif defined (HAVE_UMFPACK_UMFPACK_H)
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
41 #include <umfpack/umfpack.h>
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
42 #elif defined (HAVE_UMFPACK_H)
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
43 #include <umfpack.h>
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
44 #endif
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
45
6231
82021cf7e53a [project @ 2007-01-08 19:53:35 by dbateman]
dbateman
parents: 6186
diff changeset
46 #if defined (HAVE_SUITESPARSE_COLAMD_H)
82021cf7e53a [project @ 2007-01-08 19:53:35 by dbateman]
dbateman
parents: 6186
diff changeset
47 #include <suitesparse/colamd.h>
6186
237a7f535bbc [project @ 2006-11-28 20:13:39 by dbateman]
dbateman
parents: 5648
diff changeset
48 #elif defined (HAVE_UFSPARSE_COLAMD_H)
5512
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
49 #include <ufsparse/colamd.h>
5610
9761b7d24e9e [project @ 2006-02-09 09:12:02 by dbateman]
dbateman
parents: 5518
diff changeset
50 #elif defined (HAVE_COLAMD_COLAMD_H)
9761b7d24e9e [project @ 2006-02-09 09:12:02 by dbateman]
dbateman
parents: 5518
diff changeset
51 #include <colamd/colamd.h>
5512
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
52 #elif defined (HAVE_COLAMD_H)
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
53 #include <colamd.h>
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
54 #endif
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
55
6231
82021cf7e53a [project @ 2007-01-08 19:53:35 by dbateman]
dbateman
parents: 6186
diff changeset
56 #if defined (HAVE_SUITESPARSE_CCOLAMD_H)
82021cf7e53a [project @ 2007-01-08 19:53:35 by dbateman]
dbateman
parents: 6186
diff changeset
57 #include <suitesparse/ccolamd.h>
6186
237a7f535bbc [project @ 2006-11-28 20:13:39 by dbateman]
dbateman
parents: 5648
diff changeset
58 #elif defined (HAVE_UFSPARSE_CCOLAMD_H)
5512
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
59 #include <ufsparse/ccolamd.h>
5610
9761b7d24e9e [project @ 2006-02-09 09:12:02 by dbateman]
dbateman
parents: 5518
diff changeset
60 #elif defined (HAVE_CCOLAMD_CCOLAMD_H)
9761b7d24e9e [project @ 2006-02-09 09:12:02 by dbateman]
dbateman
parents: 5518
diff changeset
61 #include <ccolamd/ccolamd.h>
5512
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
62 #elif defined (HAVE_CCOLAMD_H)
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
63 #include <ccolamd.h>
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
64 #endif
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
65
6231
82021cf7e53a [project @ 2007-01-08 19:53:35 by dbateman]
dbateman
parents: 6186
diff changeset
66 #if defined (HAVE_SUITESPARSE_CHOLMOD_H)
82021cf7e53a [project @ 2007-01-08 19:53:35 by dbateman]
dbateman
parents: 6186
diff changeset
67 #include <suitesparse/cholmod.h>
6186
237a7f535bbc [project @ 2006-11-28 20:13:39 by dbateman]
dbateman
parents: 5648
diff changeset
68 #elif defined (HAVE_UFSPARSE_CHOLMOD_H)
5512
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
69 #include <ufsparse/cholmod.h>
6236
1bed9b2c26e0 [project @ 2007-01-10 18:20:18 by jwe]
jwe
parents: 6231
diff changeset
70 #elif defined (HAVE_CHOLMOD_CHOLMOD_H)
5610
9761b7d24e9e [project @ 2006-02-09 09:12:02 by dbateman]
dbateman
parents: 5518
diff changeset
71 #include <cholmod/cholmod.h>
5512
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
72 #elif defined (HAVE_CHOLMOD_H)
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
73 #include <cholmod.h>
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
74 #endif
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
75
6231
82021cf7e53a [project @ 2007-01-08 19:53:35 by dbateman]
dbateman
parents: 6186
diff changeset
76 #if defined (HAVE_SUITESPARSE_CS_H)
82021cf7e53a [project @ 2007-01-08 19:53:35 by dbateman]
dbateman
parents: 6186
diff changeset
77 #include <suitesparse/cs.h>
6186
237a7f535bbc [project @ 2006-11-28 20:13:39 by dbateman]
dbateman
parents: 5648
diff changeset
78 #elif defined (HAVE_UFSPARSE_CS_H)
5648
69a4f320d95a [project @ 2006-03-08 20:17:37 by dbateman]
dbateman
parents: 5610
diff changeset
79 #include <ufsparse/cs.h>
69a4f320d95a [project @ 2006-03-08 20:17:37 by dbateman]
dbateman
parents: 5610
diff changeset
80 #elif defined (HAVE_CXSPARSE_CS_H)
69a4f320d95a [project @ 2006-03-08 20:17:37 by dbateman]
dbateman
parents: 5610
diff changeset
81 #include <cxsparse/cs.h>
69a4f320d95a [project @ 2006-03-08 20:17:37 by dbateman]
dbateman
parents: 5610
diff changeset
82 #elif defined (HAVE_CS_H)
69a4f320d95a [project @ 2006-03-08 20:17:37 by dbateman]
dbateman
parents: 5610
diff changeset
83 #include <cs.h>
5610
9761b7d24e9e [project @ 2006-02-09 09:12:02 by dbateman]
dbateman
parents: 5518
diff changeset
84 #endif
9761b7d24e9e [project @ 2006-02-09 09:12:02 by dbateman]
dbateman
parents: 5518
diff changeset
85
6231
82021cf7e53a [project @ 2007-01-08 19:53:35 by dbateman]
dbateman
parents: 6186
diff changeset
86 #if (defined (HAVE_SUITESPARSE_CHOLMOD_H) \
6186
237a7f535bbc [project @ 2006-11-28 20:13:39 by dbateman]
dbateman
parents: 5648
diff changeset
87 || defined (HAVE_UFSPARSE_CHOLMOD_H) \
6236
1bed9b2c26e0 [project @ 2007-01-10 18:20:18 by jwe]
jwe
parents: 6231
diff changeset
88 || defined (HAVE_CHOLMOD_CHOLMOD_H) \
5512
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
89 || defined (HAVE_CHOLMOD_H))
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
90 #ifdef IDX_TYPE_LONG
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
91 #define CHOLMOD_NAME(name) cholmod_l_ ## name
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
92 #else
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
93 #define CHOLMOD_NAME(name) cholmod_ ## name
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
94 #endif
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
95 #endif
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
96
7c8767d0ffc0 [project @ 2005-10-27 02:20:17 by jwe]
jwe
parents:
diff changeset
97 #endif