Public Types | |
| typedef SimpleMV | _MV |
| typedef Teuchos::ScalarTraits < double > | SCT |
Static Public Member Functions | |
| static double | one () |
| static double | zero () |
| static bool | detectRepeatedIndex (const std::vector< int > &index) |
Creation methods | |
| static RCP< _MV > | Clone (const _MV &mv, const int numvecs) |
| static RCP< _MV > | CloneCopy (const _MV &mv) |
| static RCP< _MV > | CloneCopy (const _MV &mv, const std::vector< int > &index) |
| static RCP< _MV > | CloneViewNonConst (_MV &mv, const std::vector< int > &index) |
| static RCP< _MV > | CloneViewNonConst (_MV &mv, const Teuchos::Range1D &index) |
| static RCP< const _MV > | CloneView (const _MV &mv, const std::vector< int > &index) |
| static RCP< const _MV > | CloneView (const _MV &mv, const Teuchos::Range1D &index) |
Attribute methods | |
| static int | GetVecLength (const _MV &mv) |
| static int | GetNumberVecs (const _MV &mv) |
Update methods | |
| static void | MvTimesMatAddMv (const double alpha, const _MV &A, const Teuchos::SerialDenseMatrix< int, double > &B, const double beta, _MV &mv) |
Update mv with . | |
| static void | MvAddMv (const double alpha, const _MV &A, const double beta, const _MV &B, _MV &mv) |
Replace mv with . | |
| static void | MvTransMv (const double alpha, const _MV &A, const _MV &mv, Teuchos::SerialDenseMatrix< int, double > &B) |
Compute a dense matrix B through the matrix-matrix multiply . | |
| static void | MvDot (const _MV &mv, const _MV &A, std::vector< double > &b) |
| static void | MvScale (_MV &mv, const double alpha) |
| static void | MvScale (_MV &mv, const std::vector< double > &alpha) |
Norm method | |
| static void | MvNorm (const _MV &mv, std::vector< Teuchos::ScalarTraits< double >::magnitudeType > &normvec) |
Initialization methods | |
| static void | SetBlock (const _MV &A, const std::vector< int > &index, _MV &mv) |
Copy the vectors in A to a set of vectors in mv indicated by the indices given in index. | |
| static void | MvRandom (_MV &mv) |
Replace the vectors in mv with random vectors. | |
| static void | Assign (const _MV &A, _MV &mv) |
| Assign (deep copy) A into mv. | |
| static void | MvInit (_MV &mv, double alpha=Teuchos::ScalarTraits< double >::zero()) |
Replace each element of the vectors in mv with alpha. | |
Print method | |
| static void | MvPrint (const _MV &mv, std::ostream &os) |
Definition at line 123 of file PlayaAnasaziAdapter.hpp.
Definition at line 126 of file PlayaAnasaziAdapter.hpp.
Definition at line 127 of file PlayaAnasaziAdapter.hpp.
| static void Anasazi::MultiVecTraits< double, SimpleMV >::Assign | ( | const _MV & | A, |
| _MV & | mv | ||
| ) | [inline, static] |
Assign (deep copy) A into mv.
Definition at line 439 of file PlayaAnasaziAdapter.hpp.
References Anasazi::SimpleMV::size().
| static RCP<_MV> Anasazi::MultiVecTraits< double, SimpleMV >::Clone | ( | const _MV & | mv, |
| const int | numvecs | ||
| ) | [inline, static] |
Definition at line 137 of file PlayaAnasaziAdapter.hpp.
References Anasazi::SimpleMV::size().
| static RCP< _MV > Anasazi::MultiVecTraits< double, SimpleMV >::CloneCopy | ( | const _MV & | mv | ) | [inline, static] |
Definition at line 155 of file PlayaAnasaziAdapter.hpp.
References Anasazi::SimpleMV::size().
| static RCP< _MV > Anasazi::MultiVecTraits< double, SimpleMV >::CloneCopy | ( | const _MV & | mv, |
| const std::vector< int > & | index | ||
| ) | [inline, static] |
Definition at line 173 of file PlayaAnasaziAdapter.hpp.
References Anasazi::SimpleMV::size().
| static RCP<const _MV > Anasazi::MultiVecTraits< double, SimpleMV >::CloneView | ( | const _MV & | mv, |
| const std::vector< int > & | index | ||
| ) | [inline, static] |
Definition at line 230 of file PlayaAnasaziAdapter.hpp.
References Anasazi::SimpleMV::size().
| static RCP<const _MV> Anasazi::MultiVecTraits< double, SimpleMV >::CloneView | ( | const _MV & | mv, |
| const Teuchos::Range1D & | index | ||
| ) | [inline, static] |
Definition at line 252 of file PlayaAnasaziAdapter.hpp.
| static RCP< _MV > Anasazi::MultiVecTraits< double, SimpleMV >::CloneViewNonConst | ( | _MV & | mv, |
| const std::vector< int > & | index | ||
| ) | [inline, static] |
Definition at line 195 of file PlayaAnasaziAdapter.hpp.
References Anasazi::SimpleMV::size().
| static RCP<_MV> Anasazi::MultiVecTraits< double, SimpleMV >::CloneViewNonConst | ( | _MV & | mv, |
| const Teuchos::Range1D & | index | ||
| ) | [inline, static] |
Definition at line 217 of file PlayaAnasaziAdapter.hpp.
| static bool Anasazi::MultiVecTraits< double, SimpleMV >::detectRepeatedIndex | ( | const std::vector< int > & | index | ) | [inline, static] |
Definition at line 481 of file PlayaAnasaziAdapter.hpp.
| static int Anasazi::MultiVecTraits< double, SimpleMV >::GetNumberVecs | ( | const _MV & | mv | ) | [inline, static] |
Obtain the number of vectors in mv
Definition at line 275 of file PlayaAnasaziAdapter.hpp.
References Anasazi::SimpleMV::size().
| static int Anasazi::MultiVecTraits< double, SimpleMV >::GetVecLength | ( | const _MV & | mv | ) | [inline, static] |
Obtain the vector length of mv.
Definition at line 268 of file PlayaAnasaziAdapter.hpp.
References Anasazi::SimpleMV::size().
| static void Anasazi::MultiVecTraits< double, SimpleMV >::MvAddMv | ( | const double | alpha, |
| const _MV & | A, | ||
| const double | beta, | ||
| const _MV & | B, | ||
| _MV & | mv | ||
| ) | [inline, static] |
Replace mv with
.
Definition at line 327 of file PlayaAnasaziAdapter.hpp.
References Anasazi::SimpleMV::resize(), and Anasazi::SimpleMV::size().
| static void Anasazi::MultiVecTraits< double, SimpleMV >::MvDot | ( | const _MV & | mv, |
| const _MV & | A, | ||
| std::vector< double > & | b | ||
| ) | [inline, static] |
Dot product
Definition at line 369 of file PlayaAnasaziAdapter.hpp.
References Anasazi::SimpleMV::size().
| static void Anasazi::MultiVecTraits< double, SimpleMV >::MvInit | ( | _MV & | mv, |
| double | alpha = Teuchos::ScalarTraits<double>::zero() |
||
| ) | [inline, static] |
Replace each element of the vectors in mv with alpha.
Definition at line 446 of file PlayaAnasaziAdapter.hpp.
References Anasazi::SimpleMV::size().
| static void Anasazi::MultiVecTraits< double, SimpleMV >::MvNorm | ( | const _MV & | mv, |
| std::vector< Teuchos::ScalarTraits< double >::magnitudeType > & | normvec | ||
| ) | [inline, static] |
Compute the 2-norm of each individual vector of mv.
Definition at line 400 of file PlayaAnasaziAdapter.hpp.
References Anasazi::SimpleMV::resize(), and Anasazi::SimpleMV::size().
| static void Anasazi::MultiVecTraits< double, SimpleMV >::MvPrint | ( | const _MV & | mv, |
| std::ostream & | os | ||
| ) | [inline, static] |
Print the mv multi-vector to the os output stream.
Definition at line 458 of file PlayaAnasaziAdapter.hpp.
Replace the vectors in mv with random vectors.
Definition at line 433 of file PlayaAnasaziAdapter.hpp.
References Anasazi::SimpleMV::size().
| static void Anasazi::MultiVecTraits< double, SimpleMV >::MvScale | ( | _MV & | mv, |
| const double | alpha | ||
| ) | [inline, static] |
Scale each element of the vectors in *this with alpha.
Definition at line 380 of file PlayaAnasaziAdapter.hpp.
References Anasazi::SimpleMV::size().
| static void Anasazi::MultiVecTraits< double, SimpleMV >::MvScale | ( | _MV & | mv, |
| const std::vector< double > & | alpha | ||
| ) | [inline, static] |
Scale each element of the i-th vector in *this with alpha[i].
Definition at line 388 of file PlayaAnasaziAdapter.hpp.
References Anasazi::SimpleMV::size().
| static void Anasazi::MultiVecTraits< double, SimpleMV >::MvTimesMatAddMv | ( | const double | alpha, |
| const _MV & | A, | ||
| const Teuchos::SerialDenseMatrix< int, double > & | B, | ||
| const double | beta, | ||
| _MV & | mv | ||
| ) | [inline, static] |
Update mv with
.
Definition at line 288 of file PlayaAnasaziAdapter.hpp.
References Playa::Vector< Scalar >::setToConstant(), and Anasazi::SimpleMV::size().
| static void Anasazi::MultiVecTraits< double, SimpleMV >::MvTransMv | ( | const double | alpha, |
| const _MV & | A, | ||
| const _MV & | mv, | ||
| Teuchos::SerialDenseMatrix< int, double > & | B | ||
| ) | [inline, static] |
Compute a dense matrix B through the matrix-matrix multiply
.
Definition at line 348 of file PlayaAnasaziAdapter.hpp.
References Anasazi::SimpleMV::size().
Definition at line 129 of file PlayaAnasaziAdapter.hpp.
| static void Anasazi::MultiVecTraits< double, SimpleMV >::SetBlock | ( | const _MV & | A, |
| const std::vector< int > & | index, | ||
| _MV & | mv | ||
| ) | [inline, static] |
Copy the vectors in A to a set of vectors in mv indicated by the indices given in index.
Definition at line 420 of file PlayaAnasaziAdapter.hpp.
References Anasazi::SimpleMV::size().
Definition at line 130 of file PlayaAnasaziAdapter.hpp.