Provides the interface to apply a 2x2 block diagonal operator to a partitioned vector.
More...
|
| | BlockOperator2Diagonal (ROL::Ptr< OP > &A, ROL::Ptr< OP > &D) |
| |
| | BlockOperator2 (ROL::Ptr< OP > &a11, ROL::Ptr< OP > &a12, ROL::Ptr< OP > &a21, ROL::Ptr< OP > &a22) |
| |
| void | apply (V &Hv, const V &v, Real &tol) const |
| | Apply linear operator. More...
|
| |
| void | applyInverse (V &Hv, const V &v, Real &tol) const |
| | Apply inverse of linear operator. More...
|
| |
| ROL::Ptr< LinearOperator< Real > > | getOperator (int row, int col) const |
| |
| virtual | ~LinearOperator () |
| |
| virtual void | update (const Vector< Real > &x, bool flag=true, int iter=-1) |
| | Update linear operator. More...
|
| |
| virtual void | applyAdjoint (Vector< Real > &Hv, const Vector< Real > &v, Real &tol) const |
| | Apply adjoint of linear operator. More...
|
| |
| virtual void | applyAdjointInverse (Vector< Real > &Hv, const Vector< Real > &v, Real &tol) const |
| | Apply adjoint of the inverse linear operator. More...
|
| |
template<class Real>
class ROL::BlockOperator2Diagonal< Real >
Provides the interface to apply a 2x2 block diagonal operator to a partitioned vector.
\[ M = \begin{pmatrix} A & 0 \\ 0 & D \end{pmatrix} \]
\[ M^{-1} = \begin{pmatrix} A^{-1} & 0 \\ 0 & D^^{-1} \end{pmatrix} \]
Definition at line 28 of file ROL_BlockOperator2Diagonal.hpp.