|
ROL
|
#include <ROL_Constraint_SerialSimOpt.hpp>
Public Member Functions | |
| virtual | ~LinearOperator () |
| virtual void | update (const Vector< Real > &x, bool flag=true, int iter=-1) |
| Update linear operator. | |
| virtual void | apply (Vector< Real > &Hv, const Vector< Real > &v, Real &tol) const =0 |
| Apply linear operator. | |
| virtual void | applyInverse (Vector< Real > &Hv, const Vector< Real > &v, Real &tol) const |
| Apply inverse of linear operator. | |
| virtual void | applyAdjoint (Vector< Real > &Hv, const Vector< Real > &v, Real &tol) const |
| Apply adjoint of linear operator. | |
| virtual void | applyAdjointInverse (Vector< Real > &Hv, const Vector< Real > &v, Real &tol) const |
| Apply adjoint of the inverse linear operator. | |
Definition at line 37 of file ROL_Constraint_SerialSimOpt.hpp.
|
inlinevirtual |
Definition at line 40 of file ROL_Constraint_SerialSimOpt.hpp.
|
inlinevirtual |
Update linear operator.
This function updates the linear operator at new iterations.
| [in] | x | is the new iterate. |
| [in] | flag | is true if the iterate has changed. |
| [in] | iter | is the outer algorithm iterations count. |
Reimplemented in ROL::ROL::NullSpaceOperator< Real >, and ROL::ROL::RangeSpaceOperator< Real >.
Definition at line 49 of file ROL_Constraint_SerialSimOpt.hpp.
|
pure virtual |
Apply linear operator.
This function applies the linear operator to a vector.
| [out] | Hv | is the output vector. |
| [in] | v | is the input vector. |
| [in] | tol | is a tolerance for inexact linear operator application. |
Implemented in ROL::DyadicOperator< Real >, ROL::ROL::NullSpaceOperator< Real >, ROL::ROL::RangeSpaceOperator< Real >, and ROL::ROL::Secant< Real >.
|
inlinevirtual |
Apply inverse of linear operator.
This function applies the inverse of linear operator to a vector.
| [out] | Hv | is the output vector. |
| [in] | v | is the input vector. |
| [in] | tol | is a tolerance for inexact linear operator application. |
Reimplemented in ROL::DyadicOperator< Real >, ROL::ROL::NullSpaceOperator< Real >, ROL::ROL::RangeSpaceOperator< Real >, and ROL::ROL::Secant< Real >.
Definition at line 67 of file ROL_Constraint_SerialSimOpt.hpp.
|
inlinevirtual |
Apply adjoint of linear operator.
This function applies the adjoint of a linear operator to a vector. Default behavior assumes operator is self-adjoint.
| [out] | Hv | is the output vector. |
| [in] | v | is the input vector. |
| [in] | tol | is a tolerance for inexact linear operator application. |
Reimplemented in ROL::ROL::NullSpaceOperator< Real >, and ROL::ROL::RangeSpaceOperator< Real >.
Definition at line 80 of file ROL_Constraint_SerialSimOpt.hpp.
|
inlinevirtual |
Apply adjoint of the inverse linear operator.
This function applies the adjoint of the inverse linear operator to a vector. Default behavior assumes operator is self-adjoint.
| [out] | Hv | is the output vector. |
| [in] | v | is the input vector. |
| [in] | tol | is a tolerance for inexact linear operator application. |
Reimplemented in ROL::ROL::NullSpaceOperator< Real >, and ROL::ROL::RangeSpaceOperator< Real >.
Definition at line 93 of file ROL_Constraint_SerialSimOpt.hpp.
References ui_.