|
TBCI Numerical high perf. C++ Library 2.8.0
|
The class BdMatrix is an implementation to store and do operations on sparse Matrices with a band structure. More...
#include <band_matrix.h>


Public Types | |
| typedef T | value_type |
| typedef T | element_type |
| typedef T aligned_value_type | TALIGN(MIN_ALIGN2) |
Public Member Functions | |
| BdMatrix (const unsigned int=0) | |
| c'tor tridiagonal | |
| BdMatrix (const unsigned int, const unsigned int) | |
| c'tor with rows and columns (which need to be identical) | |
| BdMatrix (const unsigned int, const BVector< unsigned int > &) | |
| c'tor with config Vector | |
| BdMatrix (const BdMatrix< T > &) | |
| copy c'tor | |
| BdMatrix (const T &, const unsigned int) | |
| c'tor variants with initial value on diag (tridiag, with config) | |
| BdMatrix (const T &, const unsigned int, const BVector< unsigned int > &) | |
| BdMatrix (const T &, const unsigned int, unsigned int) | |
| c'tor with # of offdiags (band Matrix) | |
| BdMatrix (const Matrix< T > &) | |
| c'tor to copy Matrix and self-determine sparseness | |
| ~BdMatrix () THROWEXCEPT | |
| void | destroy () |
| destroy object explicitly | |
| template<typename U> | |
| BdMatrix (const BdMatrix< U > &bm) | |
| operator TMatrix< T > () const | |
| cast | |
| T & | operator() (const unsigned int, const unsigned int) HOT |
| rw member access | |
| tbci_traits< T >::const_refval_type | operator() (const unsigned int, const unsigned int) const HOT |
| ro member access | |
| tbci_traits< T >::const_refval_type | get (const unsigned int, const unsigned int) const HOT |
| BdMatrix< T > & | setval (const T &v, const unsigned int r, const unsigned int c) |
| autoinsert, sparse class compatible | |
| T & | setval (const unsigned int r, const unsigned int c) |
| BdMatrix< T > & | transpose () |
| transpose() does change the object! | |
| BdMatrix< T > & | resize (const unsigned int) |
| BdMatrix< T > & | resize (const T &, const unsigned int) |
| BdMatrix< T > & | resize (const unsigned int, const BVector< unsigned int > &) |
| BdMatrix< T > & | resize (const T &, const unsigned int, const BVector< unsigned int > &) |
| BdMatrix< T > & | resize (const BdMatrix< T > &bdm) |
| Resizing assignment. | |
| BdMatrix< T > & | reconfig (const BVector< unsigned int > &) COLD |
| BdMatrix< T > & | setunit (const T &=1) |
| BdMatrix< T > & | fill (const T &=0) |
| BdMatrix< T > & | clear () |
| BdMatrix< T > & | adddiag (const unsigned) |
| BdMatrix< T > & | removediag (const unsigned) |
| BdMatrix< T > & | autoinsert (const T &, const unsigned, const unsigned) |
| BdMatrix< T > & | expand (unsigned=0) |
| BdMatrix< T > & | set_row (const Vector< T > &val, const unsigned, const unsigned=0) |
| Overwrite row with Vector. | |
| TVector< T > | get_row (const unsigned int) const |
| Construct Vector from row. | |
| TVector< T > | get_col (const unsigned int) const |
| Construct Vector from column. | |
| unsigned int | size () const |
| size: incompatibility to Matrix (!) | |
| unsigned int | noelem () const |
| Number of elements that are actually stored. | |
| unsigned int | rows () const |
| number of rows | |
| unsigned int | columns () const |
| number of columns | |
| const BVector< unsigned int > & | getcfg () const |
| ro access to config BVector | |
| unsigned int | getmaxoff () const |
| max distance from main diagonal | |
| T | trace () const |
| BdMatrix< T > & | operator= (const BdMatrix< T > &) |
| The assignment operators in TBCI are NOT resizing. | |
| BdMatrix< T > & | operator= (const T &) |
| BdMatrix< T > & | operator+= (const BdMatrix< T > &) |
| BdMatrix< T > & | operator-= (const BdMatrix< T > &) |
| BdMatrix< T > & | operator*= (const T &) |
| BdMatrix< T > & | operator/= (const T &) |
| bool | operator== (const BdMatrix< T > &) const |
| bool | operator!= (const BdMatrix< T > &ma) const |
| BdMatrix< T > | operator+ (const BdMatrix< T > &) const |
| BdMatrix< T > | operator- (const BdMatrix< T > &) const |
| BdMatrix< T > | operator* (const BdMatrix< T > &) const |
| BdMatrix< T > | operator* (const T &) const |
| BdMatrix< T > | operator/ (const T &) const |
| BdMatrix< T > | operator- () const |
| TVector< T > | operator* (const Vector< T > &) const HOT |
| Matrix-Vector multiplication. | |
| TVector< T > | transMult (const Vector< T > &) const HOT |
| Transposed Matrix-Vector multiplication. | |
| TVector< T > | dotMult (const Vector< T > &) const |
| TMatrix< T > | operator* (const Matrix< T > &) const |
| BdMatrix< T > & | mult_rows (const Vector< T > &) |
| Linewise multiplication. | |
| BdMatrix< T > & | div_rows (const Vector< T > &) |
| BdMatrix< T > & | mult_row (const T &, const unsigned) |
| BdMatrix< T > & | div_row (const T &, const unsigned) |
| const BdMatrix< T > & | setoutopts (int w=5, int p=4, char f=' ') const |
| BdMatrix< T > | inverse () const |
| BdMatrix< int > & | operator/= (const int &div) |
| BdMatrix< unsigned int > & | operator/= (const unsigned int &div) |
| Public Member Functions inherited from Matrix_Sig< T > | |
| Matrix_Sig () | |
| ~Matrix_Sig () | |
| tbci_traits< T >::const_refval_type | operator() (const unsigned, const unsigned) const |
| ro access | |
| T & | operator() (const unsigned, const unsigned) |
| rw access | |
| Matrix_Sig< T > & | fill (const T &) |
| Matrix_Sig< T > & | setunit (const T &=(T) 1) |
| Matrix_Sig< T > & | clear () |
| TVector< T > | operator* (const Vector_Sig< T > &) const |
| TVector< T > | transMult (const Vector_Sig< T > &) const |
| unsigned int | rows () const |
| unsigned int | columns () const |
Static Public Member Functions | |
| static const char * | mat_info () |
| Static Public Member Functions inherited from Matrix_Sig< T > | |
| static const char * | mat_info () |
Protected Member Functions | |
| void | constructor (const unsigned int, const bool=true) |
| T * | check (const unsigned r, const unsigned c) const HOT |
| T * | check_internal (const unsigned r, const unsigned c) const HOT |
| void | free_diags (const unsigned) |
| Implementation alternative: All memory is allocated in one big chunk (default). | |
| void | do_copy (const BdMatrix< T > &) |
Protected Attributes | |
| unsigned int | dim |
| unsigned int | maxoff |
| size, max offset from diag | |
| unsigned long | arsz |
| BVector< unsigned > | diagconf |
| configuration | |
| BVector< T * > | adiag |
| BVector< T * > | bdiag |
| pointers to upper and lower diagonals | |
| T * | diag |
Friends | |
| class | ILU0_BdMatrixPreconditioner< T > |
| class | DILU_BdMatrixPreconditioner< T > |
| template<typename U> | |
| class | BdMatrix |
| STD__ istream & | operator>>FGD (STD__ istream &, BdMatrix< T > &) |
| STD__ ostream & | operator<<FGD (STD__ ostream &, const BdMatrix< T > &) |
| NOINST void gaussj | FGDT (const BdMatrix< T > &, const Matrix< T > &) |
| NOINST int lu_decomp | FGDT (BdMatrix< T > &) HOT |
| void FRIEND_TBCI2__ do_bdmat_vec_mult_lnw | FGDT (const unsigned, const unsigned, TVector< T > *, const BdMatrix< T > *, const Vector< T > *) |
| void FRIEND_TBCI2__ do_bdmat_vec_mult_lnw_opt | FGDT (const unsigned, const unsigned, TVector< T > *, const BdMatrix< T > *, const Vector< T > *) |
| void FRIEND_TBCI2__ do_bdmat_vec_mult_diagw_exact | FGDT (const unsigned, const unsigned, TVector< T > *, const BdMatrix< T > *, const Vector< T > *) |
| void FRIEND_TBCI2__ do_bdmat_vec_mult | FGDT (const unsigned, const unsigned, TVector< T > *, const BdMatrix< T > *, const Vector< T > *) |
| void FRIEND_TBCI2__ do_bdmat_vec_transmult_lnw | FGDT (const unsigned, const unsigned, TVector< T > *, const BdMatrix< T > *, const Vector< T > *) |
| void FRIEND_TBCI2__ do_bdmat_vec_transmult_lnw_opt | FGDT (const unsigned, const unsigned, TVector< T > *, const BdMatrix< T > *, const Vector< T > *) |
| void FRIEND_TBCI2__ do_bdmat_vec_transmult_diagw_exact | FGDT (const unsigned, const unsigned, TVector< T > *, const BdMatrix< T > *, const Vector< T > *) |
| void FRIEND_TBCI2__ do_bdmat_vec_transmult | FGDT (const unsigned, const unsigned, TVector< T > *, const BdMatrix< T > *, const Vector< T > *) |
| void FRIEND_TBCI2__ do_bdmat_vec_dotmult | FGDT (const unsigned, const unsigned, TVector< T > *, const BdMatrix< T > *, const Vector< T > *) |
The class BdMatrix is an implementation to store and do operations on sparse Matrices with a band structure.
It stores the main diagonal and additional diagonals of your Matrix as arrays.
This is an efficient way to handle matrices that have only a few diagonals, such as e.g. the typical pentadiagonal systems from solving discretized partial differential equations in 2 dimensions.
Default shape is tridiagonal, additional diagonals to be stored can be given by a BVector argument to the constructor, or by using autoinsert(), which allocates diagonals as needed.
Alternatives: CSCMatrix is a good choice for sparse matrices as well.
Layout:
... d ad1 ad2 ...
bd1. . . .
bd2..00 01 02 03 04 .... 0N
... .10 11 12 13 14 .... 1N
..... 20 21 22 23 24 .... 2N
..... .. .. .. .. .. .... ..
..... .. .. .. .. .. .... ..
..... N0 N1 N2 N3 N4 .... NN
Thus, an element a(i,j) is
diag[i] if i==j
adiag(j-i)[i] if j>i
bdiag(i-j)[j] if i>j
adiag(j-i)[i] with j >= N <=> i + j-i >= N do not exist
bdiag(i-j)[j] with i >= N <=> j + i-j >= N do not exist
Definition at line 103 of file band_matrix.h.
Definition at line 133 of file band_matrix.h.
| typedef T aligned_value_type BdMatrix< T >::TALIGN(MIN_ALIGN2) |
Definition at line 134 of file band_matrix.h.
Definition at line 132 of file band_matrix.h.
c'tor tridiagonal
Definition at line 506 of file band_matrix.h.
References adiag, bdiag, clear(), constructor(), diagconf, and UNLIKELY.
|
inlineexplicit |
c'tor with rows and columns (which need to be identical)
Definition at line 515 of file band_matrix.h.
References adiag, BCHKNR, bdiag, clear(), constructor(), diagconf, and UNLIKELY.
|
inlineexplicit |
c'tor with config Vector
Definition at line 525 of file band_matrix.h.
References adiag, bdiag, clear(), constructor(), and diagconf.
copy c'tor
Definition at line 533 of file band_matrix.h.
References adiag, bdiag, BdMatrix, constructor(), diagconf, dim, do_copy(), and UNLIKELY.
c'tor variants with initial value on diag (tridiag, with config)
Definition at line 545 of file band_matrix.h.
References adiag, bdiag, constructor(), diagconf, setunit(), T, and UNLIKELY.
|
inline |
Definition at line 570 of file band_matrix.h.
References adiag, bdiag, constructor(), diagconf, setunit(), and T.
|
inline |
c'tor with # of offdiags (band Matrix)
Definition at line 555 of file band_matrix.h.
References adiag, bdiag, constructor(), diagconf, REGISTER, setunit(), and T.
c'tor to copy Matrix and self-determine sparseness
Definition at line 580 of file band_matrix.h.
References adiag, BCHKNR, bdiag, columns(), TMatrix< T >::columns(), constructor(), diag, diagconf, dim, i, REGISTER, rows(), TMatrix< T >::rows(), and T.
Definition at line 615 of file band_matrix.h.
References BCHKNR, diagconf, free_diags(), T, and THROWEXCEPT.
|
inlineexplicit |
Definition at line 171 of file band_matrix.h.
References adiag, bdiag, BdMatrix, constructor(), diag, diagconf, dim, BVector< T >::get(), and i.
|
inlineprotected |
Definition at line 659 of file band_matrix.h.
References check_internal(), dim, EXPCHK, i, index, and T.
Referenced by autoinsert(), operator()(), operator()(), and setval().
Definition at line 1062 of file band_matrix.h.
References arsz, BdMatrix, diag, T, and TBCIFILL.
Referenced by BdMatrix(), BdMatrix(), BdMatrix(), reconfig(), and resize().
number of columns
Definition at line 249 of file band_matrix.h.
References dim.
Referenced by BdMatrix(), CSCMatrix< T >::CSCMatrix(), and LU_invert().
|
protected |
Definition at line 378 of file band_matrix.h.
References adiag, arsz, BCHKNR, bdiag, BDMATDBG, diag, diagconf, dim, i, LIKELY, maxoff, NEW, REGISTER, STD__, T, and UNLIKELY.
Referenced by BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), operator=(), reconfig(), resize(), resize(), and resize().
destroy object explicitly
Definition at line 156 of file band_matrix.h.
References adiag, arsz, bdiag, destroy(), diagconf, dim, and free_diags().
Referenced by destroy(), TVector< T >::operator+(), TVector< T >::operator-(), TVector< T >::operator=(), and TVector< T >::operator=().
Definition at line 2661 of file band_matrix.h.
References adiag, BCHK, bdiag, BdMatrix, diag, diagconf, dim, TVector< T >::get(), i, size(), and TVector< T >::size().
Definition at line 366 of file band_matrix.h.
References adiag, arsz, bdiag, BdMatrix, diag, diagconf, BVector< T >::get(), i, T, and TBCICOPY.
Referenced by BdMatrix(), and operator=().
Definition at line 2592 of file band_matrix.h.
References BCHK, BdMatrix, dim, do_bdmat_vec_dotmult(), and TVector< T >::size().
Definition at line 1097 of file band_matrix.h.
References adddiag(), arsz, BCHK, BdMatrix, dim, i, LIKELY, maxoff, reconfig(), BVector< T >::set(), size(), and UNLIKELY.
Referenced by lu_decomp().
Implementation alternative: All memory is allocated in one big chunk (default).
Definition at line 358 of file band_matrix.h.
References arsz, BDMATDBG, diag, dim, STD__, T, and TBCIDELETE.
Referenced by destroy(), operator=(), resize(), resize(), and ~BdMatrix().
|
inline |
Definition at line 694 of file band_matrix.h.
References c, check_internal(), LIKELY, REGISTER, and T.
Referenced by LU_bkw_subst(), lu_decomp(), LU_det(), LU_fwd_subst(), operator*(), operator<<(), and ILU0_BdMatrixPreconditioner< T >::update().
max distance from main diagonal
Definition at line 254 of file band_matrix.h.
References maxoff.
Referenced by LU_bkw_subst(), lu_decomp(), and LU_fwd_subst().
Definition at line 164 of file band_matrix.h.
Definition at line 2679 of file band_matrix.h.
References adiag, BCHK, bdiag, BdMatrix, diag, diagconf, dim, i, index, mult_row(), and T.
Referenced by mult_row().
Linewise multiplication.
Definition at line 2643 of file band_matrix.h.
References adiag, BCHK, bdiag, BdMatrix, diag, diagconf, dim, TVector< T >::get(), i, size(), and TVector< T >::size().
Number of elements that are actually stored.
Definition at line 245 of file band_matrix.h.
References arsz.
Definition at line 282 of file band_matrix.h.
References BdMatrix.
Definition at line 1406 of file band_matrix.h.
References STDDEF_ST.
Matrix-Vector multiplication.
Definition at line 2513 of file band_matrix.h.
References BCHK, BdMatrix, diag, dim, do_bdmat_vec_mult(), job_bdmat_vec_mult(), LIKELY, PREFETCH_R_MANY, PREFETCH_W_MANY, TVector< T >::size(), SMP_BDMATSLICE2, T, thread_start_off(), thread_wait(), threads_avail, and BVector< T >::vec.
Definition at line 1334 of file band_matrix.h.
References T.
Referenced by TVector< T >::operator/=().
Definition at line 1417 of file band_matrix.h.
Definition at line 1314 of file band_matrix.h.
Referenced by TVector< T >::operator+(), and TVector< T >::operator+().
Definition at line 1418 of file band_matrix.h.
Definition at line 1315 of file band_matrix.h.
References SFORALL_S.
Referenced by TVector< T >::operator-(), and TVector< T >::operator-().
Definition at line 1405 of file band_matrix.h.
Definition at line 1373 of file band_matrix.h.
Definition at line 1374 of file band_matrix.h.
The assignment operators in TBCI are NOT resizing.
Definition at line 1254 of file band_matrix.h.
References BCHK, BdMatrix, constructor(), diagconf, dim, do_copy(), free_diags(), size(), BVector< T >::size(), and STD__.
Definition at line 1276 of file band_matrix.h.
Definition at line 846 of file band_matrix.h.
References adiag, arsz, bdiag, BdMatrix, clear(), constructor(), diag, diagconf, dim, BVector< T >::get(), i, MIN, REGISTER, BVector< T >::size(), T, TBCICOPY, and TBCIDELETE.
Referenced by expand().
Definition at line 801 of file band_matrix.h.
References BdMatrix, constructor(), diagconf, dim, free_diags(), setunit(), and T.
Definition at line 749 of file band_matrix.h.
References adiag, arsz, bdiag, BdMatrix, constructor(), diag, diagconf, dim, BVector< T >::get(), i, MIN, min, REGISTER, BVector< T >::size(), T, TBCICOPY, TBCIDELETE, and TBCIFILL.
| BdMatrix< T > & BdMatrix< T >::resize | ( | const unsigned int | nd, |
| const BVector< unsigned int > & | cfg ) |
Definition at line 818 of file band_matrix.h.
References BdMatrix, clear(), constructor(), diagconf, dim, and free_diags().
number of rows
Definition at line 247 of file band_matrix.h.
References dim.
Referenced by BdMatrix(), CSCMatrix< T >::CSCMatrix(), LU_bkw_subst(), lu_decomp(), LU_det(), LU_fwd_subst(), and LU_invert().
| BdMatrix< T > & BdMatrix< T >::set_row | ( | const Vector< T > & | val, |
| const unsigned | r, | ||
| const unsigned | s = 0 ) |
Overwrite row with Vector.
Definition at line 1014 of file band_matrix.h.
References autoinsert(), BdMatrix, i, and TVector< T >::size().
|
inline |
Definition at line 321 of file band_matrix.h.
Definition at line 725 of file band_matrix.h.
References arsz, BdMatrix, diag, dim, T, and TBCIFILL.
Referenced by BdMatrix(), BdMatrix(), BdMatrix(), operator=(), and resize().
|
inline |
autoinsert, sparse class compatible
Definition at line 205 of file band_matrix.h.
References autoinsert(), BdMatrix, c, and T.
Referenced by lu_decomp(), and operator>>().
size: incompatibility to Matrix (!)
Definition at line 243 of file band_matrix.h.
References dim.
Referenced by div_rows(), expand(), mult_rows(), operator*(), and operator=().
Transposed Matrix-Vector multiplication.
Definition at line 2541 of file band_matrix.h.
References BCHK, BdMatrix, diag, dim, do_bdmat_vec_transmult(), job_bdmat_vec_transmult(), LIKELY, PREFETCH_R_MANY, PREFETCH_W_MANY, TVector< T >::size(), SMP_BDMATSLICE2, T, thread_start_off(), thread_wait(), threads_avail, and BVector< T >::vec.
transpose() does change the object!
Definition at line 1377 of file band_matrix.h.
References adiag, bdiag, BdMatrix, diagconf, REGISTER, T, and transpose().
Referenced by transpose().
Definition at line 170 of file band_matrix.h.
References BdMatrix.
Referenced by adddiag(), autoinsert(), BdMatrix, BdMatrix(), BdMatrix(), clear(), div_row(), div_rows(), do_copy(), dotMult(), expand(), FGDT, FGDT, FGDT, fill(), inverse(), mult_row(), mult_rows(), operator TMatrix< T >(), operator!=(), operator*(), operator*(), operator*(), operator-(), operator/=(), operator<<FGD, operator=(), operator=(), operator==(), operator>>FGD, reconfig(), removediag(), resize(), resize(), resize(), resize(), resize(), set_row(), setoutopts(), setunit(), setval(), transMult(), and transpose().
|
friend |
Definition at line 55 of file band_matrix.h.
References BdMatrix, HOT, lu_decomp(), and NOINST.
|
friend |
References BdMatrix, do_bdmat_vec_dotmult(), and FRIEND_TBCI2__.
|
friend |
References BdMatrix, do_bdmat_vec_transmult(), and FRIEND_TBCI2__.
|
friend |
References BdMatrix, do_bdmat_vec_transmult_diagw_exact(), and FRIEND_TBCI2__.
|
friend |
References BdMatrix, do_bdmat_vec_transmult_lnw_opt(), and FRIEND_TBCI2__.
|
friend |
References BdMatrix, do_bdmat_vec_transmult_lnw(), and FRIEND_TBCI2__.
|
friend |
References BdMatrix, do_bdmat_vec_mult(), and FRIEND_TBCI2__.
|
friend |
References BdMatrix, do_bdmat_vec_mult_diagw_exact(), and FRIEND_TBCI2__.
|
friend |
References BdMatrix, do_bdmat_vec_mult_lnw_opt(), and FRIEND_TBCI2__.
|
friend |
References BdMatrix, do_bdmat_vec_mult_lnw(), and FRIEND_TBCI2__.
|
friend |
Definition at line 55 of file band_matrix.h.
Definition at line 112 of file band_matrix.h.
Referenced by adddiag(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), check_internal(), constructor(), destroy(), div_row(), div_rows(), do_bdmat_vec_dotmult(), do_bdmat_vec_mult(), do_bdmat_vec_mult_diagw_exact(), do_bdmat_vec_mult_lnw(), do_bdmat_vec_mult_lnw_opt(), do_bdmat_vec_transmult(), do_bdmat_vec_transmult_diagw_exact(), do_bdmat_vec_transmult_lnw(), do_bdmat_vec_transmult_lnw_opt(), do_copy(), get_col(), get_row(), mult_row(), mult_rows(), operator TMatrix< T >(), operator-(), operator/=(), operator==(), reconfig(), removediag(), resize(), transpose(), DILU_BdMatrixPreconditioner< T >::update(), and ILU0_BdMatrixPreconditioner< T >::update().
Definition at line 110 of file band_matrix.h.
Referenced by adddiag(), clear(), constructor(), destroy(), do_copy(), expand(), fill(), free_diags(), noelem(), reconfig(), removediag(), resize(), and setunit().
pointers to upper and lower diagonals
Definition at line 112 of file band_matrix.h.
Referenced by adddiag(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), check_internal(), constructor(), destroy(), div_row(), div_rows(), do_bdmat_vec_dotmult(), do_bdmat_vec_mult(), do_bdmat_vec_mult_diagw_exact(), do_bdmat_vec_mult_lnw(), do_bdmat_vec_mult_lnw_opt(), do_bdmat_vec_transmult(), do_bdmat_vec_transmult_diagw_exact(), do_bdmat_vec_transmult_lnw(), do_bdmat_vec_transmult_lnw_opt(), do_copy(), get_col(), get_row(), mult_row(), mult_rows(), operator TMatrix< T >(), operator-(), operator/=(), operator==(), reconfig(), removediag(), resize(), transpose(), DILU_BdMatrixPreconditioner< T >::update(), and ILU0_BdMatrixPreconditioner< T >::update().
Definition at line 113 of file band_matrix.h.
Referenced by adddiag(), BdMatrix(), BdMatrix(), check_internal(), clear(), constructor(), div_row(), div_rows(), do_bdmat_vec_dotmult(), do_bdmat_vec_mult(), do_bdmat_vec_mult_diagw_exact(), do_bdmat_vec_mult_lnw(), do_bdmat_vec_mult_lnw_opt(), do_bdmat_vec_transmult(), do_bdmat_vec_transmult_diagw_exact(), do_bdmat_vec_transmult_lnw(), do_bdmat_vec_transmult_lnw_opt(), do_copy(), fill(), free_diags(), get_col(), get_row(), mult_row(), mult_rows(), operator TMatrix< T >(), operator*(), operator-(), operator/=(), operator==(), reconfig(), resize(), resize(), setunit(), trace(), transMult(), and DILU_BdMatrixPreconditioner< T >::update().
configuration
Definition at line 111 of file band_matrix.h.
Referenced by adddiag(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), BdMatrix(), constructor(), destroy(), div_row(), div_rows(), do_bdmat_vec_dotmult(), do_bdmat_vec_mult(), do_bdmat_vec_mult_diagw_exact(), do_bdmat_vec_mult_lnw(), do_bdmat_vec_mult_lnw_opt(), do_bdmat_vec_transmult(), do_bdmat_vec_transmult_diagw_exact(), do_bdmat_vec_transmult_lnw(), do_bdmat_vec_transmult_lnw_opt(), do_copy(), get_col(), get_row(), getcfg(), mult_row(), mult_rows(), operator TMatrix< T >(), operator-(), operator/=(), operator<<(), operator=(), operator==(), operator>>(), reconfig(), removediag(), resize(), resize(), resize(), resize(), transpose(), DILU_BdMatrixPreconditioner< T >::update(), ILU0_BdMatrixPreconditioner< T >::update(), and ~BdMatrix().
Definition at line 109 of file band_matrix.h.
Referenced by adddiag(), BdMatrix(), BdMatrix(), BdMatrix(), check(), columns(), constructor(), destroy(), div_row(), div_rows(), do_bdmat_vec_dotmult(), do_bdmat_vec_mult(), do_bdmat_vec_mult_diagw_exact(), do_bdmat_vec_mult_lnw(), do_bdmat_vec_mult_lnw_opt(), do_bdmat_vec_transmult(), do_bdmat_vec_transmult_diagw_exact(), do_bdmat_vec_transmult_lnw(), do_bdmat_vec_transmult_lnw_opt(), dotMult(), expand(), free_diags(), get_col(), get_row(), mult_row(), mult_rows(), operator TMatrix< T >(), operator*(), operator*(), operator+(), operator-(), operator-(), operator/=(), operator<<(), operator=(), operator==(), operator>>(), reconfig(), removediag(), resize(), resize(), resize(), resize(), resize(), rows(), setunit(), size(), trace(), transMult(), DILU_BdMatrixPreconditioner< T >::update(), and ILU0_BdMatrixPreconditioner< T >::update().
size, max offset from diag
Definition at line 109 of file band_matrix.h.
Referenced by adddiag(), check_internal(), constructor(), do_bdmat_vec_dotmult(), do_bdmat_vec_mult_lnw_opt(), do_bdmat_vec_transmult_lnw_opt(), expand(), getmaxoff(), operator*(), and removediag().