Thyra
Version of the Day
|
Represents a identity linear operator M = I
.
More...
#include <Thyra_DefaultIdentityLinearOp_decl.hpp>
Related Functions | |
(Note that these are not member functions.) | |
template<class Scalar > | |
RCP< const LinearOpBase< Scalar > > | identity (const RCP< const VectorSpaceBase< Scalar > > &space, const std::string &label="") |
Create an identity linear operator with given a vector space. More... | |
Related Functions inherited from Thyra::LinearOpBase< Scalar > | |
template<class Scalar > | |
bool | isFullyUninitialized (const LinearOpBase< Scalar > &M) |
Determines if a linear operator is in the "Fully Uninitialized" state or not. More... | |
template<class Scalar > | |
bool | isPartiallyInitialized (const LinearOpBase< Scalar > &M) |
Determines if a linear operator is in the "Partially Initialized" state or not. More... | |
template<class Scalar > | |
bool | isFullyInitialized (const LinearOpBase< Scalar > &M) |
Determines if a linear operator is in the "Fully Initialized" state or not. More... | |
template<class Scalar > | |
bool | opSupported (const LinearOpBase< Scalar > &M, EOpTransp M_trans) |
Determines if an operation is supported for a single scalar type. More... | |
template<class Scalar > | |
void | apply (const LinearOpBase< Scalar > &M, const EOpTransp M_trans, const MultiVectorBase< Scalar > &X, const Ptr< MultiVectorBase< Scalar > > &Y, const Scalar alpha=static_cast< Scalar >(1.0), const Scalar beta=static_cast< Scalar >(0.0)) |
Non-member function call for M.apply(...) . More... | |
void | apply (const LinearOpBase< double > &M, const EOpTransp M_trans, const MultiVectorBase< double > &X, const Ptr< MultiVectorBase< double > > &Y, const double alpha=1.0, const double beta=0.0) |
Calls apply<double>(...) . More... | |
Constructors/initializers/accessors | |
DefaultIdentityLinearOp () | |
Constructs to uninitialized. More... | |
DefaultIdentityLinearOp (const RCP< const VectorSpaceBase< Scalar > > &space) | |
void | initialize (const RCP< const VectorSpaceBase< Scalar > > &space) |
Initialize given a list of non-const linear operators. More... | |
void | uninitialize () |
Set to uninitialized. More... | |
Overridden from LinearOpBase | |
RCP< const VectorSpaceBase < Scalar > > | range () const |
Returns Teuchos::null if uninitialized. More... | |
RCP< const VectorSpaceBase < Scalar > > | domain () const |
Returns Teuchos::null if uninitialized. More... | |
RCP< const LinearOpBase< Scalar > > | clone () const |
bool | opSupportedImpl (EOpTransp M_trans) const |
Returns true . More... | |
void | applyImpl (const EOpTransp M_trans, const MultiVectorBase< Scalar > &X, const Ptr< MultiVectorBase< Scalar > > &Y, const Scalar alpha, const Scalar beta) const |
Overridden from Teuchos::Describable | |
std::string | description () const |
Prints just the name DefaultIdentityLinearOp along with the overall dimensions. More... | |
Represents a identity linear operator M = I
.
This class implements:
y = alpha*op(M)*x + beta*y => y = alpha*x + beta*y
Definition at line 35 of file Thyra_DefaultIdentityLinearOp_decl.hpp.
Thyra::DefaultIdentityLinearOp< Scalar >::DefaultIdentityLinearOp | ( | ) |
Constructs to uninitialized.
Postconditions:
this->range().get()==NULL
Definition at line 25 of file Thyra_DefaultIdentityLinearOp_def.hpp.
Thyra::DefaultIdentityLinearOp< Scalar >::DefaultIdentityLinearOp | ( | const RCP< const VectorSpaceBase< Scalar > > & | space | ) |
Calls initialize()
.
Definition at line 30 of file Thyra_DefaultIdentityLinearOp_def.hpp.
void Thyra::DefaultIdentityLinearOp< Scalar >::initialize | ( | const RCP< const VectorSpaceBase< Scalar > > & | space | ) |
Initialize given a list of non-const linear operators.
range | [in] Range vector space. |
range | [in] Domain vector space. |
Preconditions:
range.get()!=NULL
domain.get()!=NULL
Postconditions:
Definition at line 39 of file Thyra_DefaultIdentityLinearOp_def.hpp.
void Thyra::DefaultIdentityLinearOp< Scalar >::uninitialize | ( | ) |
Set to uninitialized.
Postconditions:
this->range().get()==NULL
Definition at line 48 of file Thyra_DefaultIdentityLinearOp_def.hpp.
|
virtual |
Returns Teuchos::null
if uninitialized.
Implements Thyra::LinearOpBase< Scalar >.
Definition at line 59 of file Thyra_DefaultIdentityLinearOp_def.hpp.
|
virtual |
Returns Teuchos::null
if uninitialized.
Implements Thyra::LinearOpBase< Scalar >.
Definition at line 67 of file Thyra_DefaultIdentityLinearOp_def.hpp.
|
virtual |
Reimplemented from Thyra::LinearOpBase< Scalar >.
Definition at line 75 of file Thyra_DefaultIdentityLinearOp_def.hpp.
|
virtual |
Prints just the name DefaultIdentityLinearOp
along with the overall dimensions.
Reimplemented from Teuchos::Describable.
Definition at line 88 of file Thyra_DefaultIdentityLinearOp_def.hpp.
|
protectedvirtual |
Returns true
.
Implements Thyra::LinearOpBase< Scalar >.
Definition at line 107 of file Thyra_DefaultIdentityLinearOp_def.hpp.
|
protectedvirtual |
Implements Thyra::LinearOpBase< Scalar >.
Definition at line 114 of file Thyra_DefaultIdentityLinearOp_def.hpp.
|
related |
Create an identity linear operator with given a vector space.