Branch data Line data Source code
1 : : /*
2 : : * tridiag.h - tridiagonal matrix template class definitions
3 : : *
4 : : * Copyright (C) 2005 Stefan Jahn <stefan@lkcc.org>
5 : : *
6 : : * This is free software; you can redistribute it and/or modify
7 : : * it under the terms of the GNU General Public License as published by
8 : : * the Free Software Foundation; either version 2, or (at your option)
9 : : * any later version.
10 : : *
11 : : * This software is distributed in the hope that it will be useful,
12 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 : : * GNU General Public License for more details.
15 : : *
16 : : * You should have received a copy of the GNU General Public License
17 : : * along with this package; see the file COPYING. If not, write to
18 : : * the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
19 : : * Boston, MA 02110-1301, USA.
20 : : *
21 : : * $Id$
22 : : *
23 : : */
24 : :
25 : : #ifndef __TRIDIAG_H__
26 : : #define __TRIDIAG_H__
27 : :
28 : : #include "tvector.h"
29 : :
30 : : namespace qucs {
31 : :
32 : : // Types of tridiagonal matrices.
33 : : enum tridiag_type {
34 : : TRIDIAG_UNKNOWN = -1,
35 : : TRIDIAG_NONSYM,
36 : : TRIDIAG_SYM,
37 : : TRIDIAG_NONSYM_CYCLIC,
38 : : TRIDIAG_SYM_CYCLIC
39 : : };
40 : :
41 : : template <class nr_type_t>
42 : : class tridiag
43 : : {
44 : : public:
45 : : tridiag ();
46 : : tridiag (const tridiag &);
47 : : const tridiag& operator = (const tridiag &);
48 : : ~tridiag ();
49 : :
50 : : void setDiagonal (tvector<nr_type_t> *);
51 : : void setOffDiagonal (tvector<nr_type_t> *);
52 : : void setA (tvector<nr_type_t> *);
53 : : void setB (tvector<nr_type_t> *);
54 : : void setRHS (tvector<nr_type_t> *);
55 : 0 : void setType (int t) { type = t; }
56 : :
57 : : void solve (void);
58 : : void solve_ns (void);
59 : : void solve_ns_cyc (void);
60 : : void solve_s (void);
61 : : void solve_s_cyc (void);
62 : :
63 : : private:
64 : : tvector<nr_type_t> * abov;
65 : : tvector<nr_type_t> * belo;
66 : : tvector<nr_type_t> * diag;
67 : : tvector<nr_type_t> * offdiag;
68 : : tvector<nr_type_t> * rhs;
69 : :
70 : : nr_type_t * d;
71 : : nr_type_t * e;
72 : : nr_type_t * f;
73 : : nr_type_t * z;
74 : : nr_type_t * c;
75 : : nr_type_t * b;
76 : : nr_type_t * x;
77 : : nr_type_t * al;
78 : : nr_type_t * be;
79 : : nr_type_t * ga;
80 : : nr_type_t * de;
81 : : nr_type_t * ep;
82 : :
83 : : int type;
84 : : };
85 : :
86 : : } // namespace qucs
87 : :
88 : : #include "tridiag.cpp"
89 : :
90 : : #endif /* __TRIDIAG_H__ */
|