#include <AnasaziSortManager.hpp>
Inheritance diagram for Anasazi::SortManager< ScalarType, MV, OP >:

Public Member Functions | |
| SortManager () | |
| Default Constructor. | |
| virtual | ~SortManager () |
| Destructor. | |
| virtual void | sort (Eigensolver< ScalarType, MV, OP > *solver, const int n, std::vector< typename Teuchos::ScalarTraits< ScalarType >::magnitudeType > &evals, std::vector< int > *perm=0) const =0 |
| Sort the vector of eigenvalues, optionally returning the permutation vector. | |
| virtual void | sort (Eigensolver< ScalarType, MV, OP > *solver, const int n, std::vector< typename Teuchos::ScalarTraits< ScalarType >::magnitudeType > &r_evals, std::vector< typename Teuchos::ScalarTraits< ScalarType >::magnitudeType > &i_evals, std::vector< int > *perm=0) const =0 |
| Sort the vectors of eigenpairs, optionally returning the permutation vector. | |
A concrete implementation of this class is necessary. The user can create their own implementation if those supplied are not suitable for their needs.
Definition at line 69 of file AnasaziSortManager.hpp.
|
|||||||||
|
Default Constructor.
Definition at line 74 of file AnasaziSortManager.hpp. |
|
|||||||||
|
Destructor.
Definition at line 77 of file AnasaziSortManager.hpp. |
|
||||||||||||||||||||||||
|
Sort the vector of eigenvalues, optionally returning the permutation vector.
Implemented in Anasazi::BasicSort< ScalarType, MV, OP >. |
|
||||||||||||||||||||||||||||
|
Sort the vectors of eigenpairs, optionally returning the permutation vector. This routine takes two vectors, one for each part of a complex eigenvalue. This is helpful for solving real, non-symmetric eigenvalue problems.
Implemented in Anasazi::BasicSort< ScalarType, MV, OP >. |
1.3.9.1