#include <SymGEigsCayleyOp.h>
Public Types | |
| using | Scalar = typename OpType::Scalar |
Public Member Functions | |
| Index | cols () const |
| void | perform_op (const Scalar *x_in, Scalar *y_out) const |
| Index | rows () const |
| void | set_shift (const Scalar &sigma) |
| SymGEigsCayleyOp (OpType &op, const BOpType &Bop) | |
| SymGEigsCayleyOp (SymGEigsCayleyOp &&other) | |
Private Types | |
| using | Index = Eigen::Index |
| using | MapConstVec = Eigen::Map< const Vector > |
| using | MapVec = Eigen::Map< Vector > |
| using | Vector = Eigen::Matrix< Scalar, Eigen::Dynamic, 1 > |
Private Attributes | |
| const BOpType & | m_Bop |
| Vector | m_cache |
| OpType & | m_op |
| Scalar | m_sigma |
This class defines the matrix operation for generalized eigen solver in the Cayley mode. It computes
for any vector
, where
is a symmetric matrix,
is positive definite, and
is a real shift. This class is intended for internal use.
Definition at line 28 of file SymGEigsCayleyOp.h.
|
private |
Definition at line 34 of file SymGEigsCayleyOp.h.
|
private |
Definition at line 36 of file SymGEigsCayleyOp.h.
|
private |
Definition at line 37 of file SymGEigsCayleyOp.h.
| using Spectra::SymGEigsCayleyOp< OpType, BOpType >::Scalar = typename OpType::Scalar |
Definition at line 31 of file SymGEigsCayleyOp.h.
|
private |
Definition at line 35 of file SymGEigsCayleyOp.h.
|
inline |
Constructor to create the matrix operation object.
| op | The matrix operation object. |
| Bop | The matrix operation object. |
Definition at line 51 of file SymGEigsCayleyOp.h.
|
inline |
Move constructor.
Definition at line 58 of file SymGEigsCayleyOp.h.
|
inline |
Return the number of columns of the underlying matrix.
Definition at line 72 of file SymGEigsCayleyOp.h.
|
inline |
Perform the matrix operation
.
| x_in | Pointer to the vector. |
| y_out | Pointer to the vector. |
Definition at line 90 of file SymGEigsCayleyOp.h.
|
inline |
Return the number of rows of the underlying matrix.
Definition at line 68 of file SymGEigsCayleyOp.h.
|
inline |
Set the real shift
.
Definition at line 77 of file SymGEigsCayleyOp.h.
|
private |
Definition at line 40 of file SymGEigsCayleyOp.h.
|
mutableprivate |
Definition at line 41 of file SymGEigsCayleyOp.h.
|
private |
Definition at line 39 of file SymGEigsCayleyOp.h.
|
private |
Definition at line 42 of file SymGEigsCayleyOp.h.