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_PHYSICALLY_BLOCKED_LINEAR_OP_WITH_SOLVE_BASE_HPP
00030 #define THYRA_PHYSICALLY_BLOCKED_LINEAR_OP_WITH_SOLVE_BASE_HPP
00031
00032 #include "Thyra_BlockedLinearOpWithSolveBase.hpp"
00033 #include "Thyra_PhysicallyBlockedLinearOpBase.hpp"
00034
00035 namespace Thyra {
00036
00045 template<class RangeScalar, class DomainScalar=RangeScalar>
00046 class PhysicallyBlockedLinearOpWithSolveBase
00047 : virtual public BlockedLinearOpWithSolveBase<RangeScalar,DomainScalar>
00048 , virtual public PhysicallyBlockedLinearOpBase<RangeScalar,DomainScalar>
00049 {
00050 public:
00051
00067 virtual bool acceptsBlockLOWSB(const int i, const int j) const = 0;
00068
00080 virtual void setNonconstBlockLOWS(
00081 const int i, const int j
00082 ,const Teuchos::RefCountPtr<LinearOpWithSolveBase<Scalar> > &block
00083 ) = 0;
00084
00096 virtual void setBlockLOWS(
00097 const int i, const int j
00098 ,const Teuchos::RefCountPtr<const LinearOpWithSolveBase<Scalar> > &block
00099 ) = 0;
00100
00101 };
00102
00103 }
00104
00105 #endif // THYRA_PHYSICALLY_BLOCKED_LINEAR_OP_WITH_SOLVE_BASE_HPP