![]() |
|
#include <eigen_solver.h>
Public Member Functions | |
EigenSolver () | |
Empty constructor. More... | |
EigenSolver (const EigenSolver &) | |
Empty copy constructor. More... | |
virtual | ~EigenSolver () |
Empty destructor. More... | |
virtual void | solve_eigenproblem (Problem *const &problem_pt, const int &n_eval, Vector< std::complex< double >> &eigenvalue, Vector< DoubleVector > &eigenvector)=0 |
void | set_shift (const double &shift_value) |
Set the value of the shift. More... | |
const double & | get_shift () const |
Return the value of the shift (const version) More... | |
![]() | |
DistributableLinearAlgebraObject () | |
Default constructor - create a distribution. More... | |
DistributableLinearAlgebraObject (const DistributableLinearAlgebraObject &matrix)=delete | |
Broken copy constructor. More... | |
void | operator= (const DistributableLinearAlgebraObject &)=delete |
Broken assignment operator. More... | |
virtual | ~DistributableLinearAlgebraObject () |
Destructor. More... | |
LinearAlgebraDistribution * | distribution_pt () const |
access to the LinearAlgebraDistribution More... | |
unsigned | nrow () const |
access function to the number of global rows. More... | |
unsigned | nrow_local () const |
access function for the num of local rows on this processor. More... | |
unsigned | nrow_local (const unsigned &p) const |
access function for the num of local rows on this processor. More... | |
unsigned | first_row () const |
access function for the first row on this processor More... | |
unsigned | first_row (const unsigned &p) const |
access function for the first row on this processor More... | |
bool | distributed () const |
distribution is serial or distributed More... | |
bool | distribution_built () const |
void | build_distribution (const LinearAlgebraDistribution *const dist_pt) |
void | build_distribution (const LinearAlgebraDistribution &dist) |
Protected Attributes | |
double | Sigma_real |
Additional Inherited Members | |
![]() | |
void | clear_distribution () |
Base class for all EigenProblem solves. This simply defines standard interfaces so that different solvers can be used easily.
|
inline |
Empty constructor.
|
inline |
|
inline |
Return the value of the shift (const version)
References Sigma_real.
|
inline |
Set the value of the shift.
References Sigma_real.
Referenced by OrrSommerfeldProblem< ELEMENT >::OrrSommerfeldProblem().
|
pure virtual |
Actual eigensolver. This takes a pointer to a problem and returns a vector of complex numbers representing the eigenvalues and a corresponding vector of eigenvectors
Implemented in oomph::ANASAZI, oomph::LAPACK_QZ, and oomph::ARPACK.
Referenced by oomph::Problem::solve_eigenproblem().
|
protected |
Double value that represents the real part of the shift in shifted eigensolvers
Referenced by get_shift(), set_shift(), oomph::ARPACK::solve_eigenproblem(), oomph::LAPACK_QZ::solve_eigenproblem(), and oomph::ANASAZI::solve_eigenproblem().