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_WITH_SOLVE_BASE_HPP
00030 #define THYRA_SINGLE_SCALAR_LINEAR_OP_WITH_SOLVE_BASE_HPP
00031
00032 #include "Thyra_SingleScalarLinearOpWithSolveBaseDecl.hpp"
00033 #include "Thyra_LinearOpWithSolveBase.hpp"
00034 #include "Thyra_SingleScalarLinearOpBase.hpp"
00035
00036 namespace Thyra {
00037
00038
00039
00040 template <class Scalar>
00041 bool SingleScalarLinearOpWithSolveBase<Scalar>::solveSupportsConj(EConj conj) const
00042 {
00043 return this->solveSupportsTrans(applyConjToTrans(conj));
00044 }
00045
00046 template <class Scalar>
00047 bool SingleScalarLinearOpWithSolveBase<Scalar>::solveTransposeSupportsConj(EConj conj) const
00048 {
00049 return this->solveSupportsTrans(applyTransposeConjToTrans(conj));
00050 }
00051
00052 template <class Scalar>
00053 bool SingleScalarLinearOpWithSolveBase<Scalar>::solveSupportsSolveMeasureType(EConj conj, const SolveMeasureType& solveMeasureType) const
00054 {
00055 return this->solveSupportsSolveMeasureType(applyConjToTrans(conj),solveMeasureType);
00056 }
00057
00058 template <class Scalar>
00059 bool SingleScalarLinearOpWithSolveBase<Scalar>::solveTransposeSupportsSolveMeasureType(EConj conj, const SolveMeasureType& solveMeasureType) const
00060 {
00061 return this->solveSupportsSolveMeasureType(applyTransposeConjToTrans(conj),solveMeasureType);
00062 }
00063
00064 template <class Scalar>
00065 void SingleScalarLinearOpWithSolveBase<Scalar>::solve(
00066 const EConj conj
00067 ,const MultiVectorBase<Scalar> &B
00068 ,MultiVectorBase<Scalar> *X
00069 ,const int numBlocks
00070 ,const BlockSolveCriteria<Scalar> blockSolveCriteria[]
00071 ,SolveStatus<Scalar> blockSolveStatus[]
00072 ) const
00073 {
00074 this->solve(applyConjToTrans(conj),B,X,numBlocks,blockSolveCriteria,blockSolveStatus);
00075 }
00076
00077 template <class Scalar>
00078 void SingleScalarLinearOpWithSolveBase<Scalar>::solveTranspose(
00079 const EConj conj
00080 ,const MultiVectorBase<Scalar> &B
00081 ,MultiVectorBase<Scalar> *X
00082 ,const int numBlocks
00083 ,const BlockSolveCriteria<Scalar> blockSolveCriteria[]
00084 ,SolveStatus<Scalar> blockSolveStatus[]
00085 ) const
00086 {
00087 this->solve(applyTransposeConjToTrans(conj),B,X,numBlocks,blockSolveCriteria,blockSolveStatus);
00088 }
00089
00090 }
00091
00092 #endif // THYRA_SINGLE_SCALAR_LINEAR_OP_WITH_SOLVE_BASE_HPP