00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef THYRA_SINGLE_SCALAR_LINEAR_OP_BASE_HPP
00030 #define THYRA_SINGLE_SCALAR_LINEAR_OP_BASE_HPP
00031
00032 #include "Thyra_SingleScalarLinearOpBaseDecl.hpp"
00033 #include "Thyra_LinearOpDefaultBase.hpp"
00034
00035 namespace Thyra {
00036
00037
00038
00039 template<class Scalar>
00040 bool SingleScalarLinearOpBase<Scalar>::applySupports( const EConj conj ) const
00041 {
00042 return this->opSupported(applyConjToTrans(conj));
00043 }
00044
00045 template<class Scalar>
00046 bool SingleScalarLinearOpBase<Scalar>::applyTransposeSupports( const EConj conj ) const
00047 {
00048 return this->opSupported( applyTransposeConjToTrans(conj) );
00049 }
00050
00051 template<class Scalar>
00052 void SingleScalarLinearOpBase<Scalar>::apply(
00053 const EConj conj
00054 ,const MultiVectorBase<Scalar> &X
00055 ,MultiVectorBase<Scalar> *Y
00056 ,const Scalar alpha
00057 ,const Scalar beta
00058 ) const
00059 {
00060 this->apply(applyConjToTrans(conj),X,Y,alpha,beta);
00061 }
00062
00063 template<class Scalar>
00064 void SingleScalarLinearOpBase<Scalar>::applyTranspose(
00065 const EConj conj
00066 ,const MultiVectorBase<Scalar> &X
00067 ,MultiVectorBase<Scalar> *Y
00068 ,const Scalar alpha
00069 ,const Scalar beta
00070 ) const
00071 {
00072 this->apply(applyTransposeConjToTrans(conj),X,Y,alpha,beta);
00073 }
00074
00075 }
00076
00077 #endif // THYRA_SINGLE_SCALAR_LINEAR_OP_BASE_HPP