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
00036 namespace Thyra {
00037
00038
00046 template<class RangeScalar, class DomainScalar=RangeScalar>
00047 class PhysicallyBlockedLinearOpWithSolveBase
00048 : virtual public BlockedLinearOpWithSolveBase<RangeScalar,DomainScalar>,
00049 virtual public PhysicallyBlockedLinearOpBase<RangeScalar,DomainScalar>
00050 {
00051 public:
00052
00068 virtual bool acceptsLOWSBlock(const int i, const int j) const = 0;
00069
00071 virtual void setNonconstLOWSBlock(
00072 const int i, const int j,
00073 const Teuchos::RCP<LinearOpWithSolveBase<RangeScalar,DomainScalar> > &block
00074 ) = 0;
00075
00077 virtual void setLOWSBlock(
00078 const int i, const int j,
00079 const Teuchos::RCP<const LinearOpWithSolveBase<RangeScalar,DomainScalar> > &block
00080 ) = 0;
00081
00082 };
00083
00084
00085 }
00086
00087
00088 #endif // THYRA_PHYSICALLY_BLOCKED_LINEAR_OP_WITH_SOLVE_BASE_HPP