5164
|
1 /* |
|
2 |
|
3 Copyright (C) 2004 David Bateman |
|
4 Copyright (C) 1998-2004 Andy Adler |
|
5 |
|
6 Octave is free software; you can redistribute it and/or modify it |
|
7 under the terms of the GNU General Public License as published by the |
|
8 Free Software Foundation; either version 2, or (at your option) any |
|
9 later version. |
|
10 |
|
11 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 for more details. |
|
15 |
|
16 You should have received a copy of the GNU General Public License |
5307
|
17 along with this program; see the file COPYING. If not, write to the |
|
18 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
|
19 Boston, MA 02110-1301, USA. |
5164
|
20 |
|
21 */ |
|
22 |
|
23 #ifdef HAVE_CONFIG_H |
|
24 #include <config.h> |
|
25 #endif |
|
26 |
|
27 // Instantiate Sparse matrix of double values. |
|
28 |
|
29 #include "Sparse.h" |
|
30 #include "Sparse.cc" |
|
31 |
6708
|
32 INSTANTIATE_SPARSE_AND_ASSIGN (double, OCTAVE_API); |
5164
|
33 |
|
34 #if 0 |
|
35 template std::ostream& operator << (std::ostream&, const Sparse<double>&); |
|
36 #endif |
|
37 |
|
38 /* |
|
39 ;;; Local Variables: *** |
|
40 ;;; mode: C++ *** |
|
41 ;;; End: *** |
|
42 */ |