|
Thyra Package Browser (Single Doxygen Collection) Version of the Day
|
00001 // *********************************************************************** 00002 // 00003 // Thyra: Trilinos Solver Framework Core 00004 // Copyright (2004) Sandia Corporation 00005 // 00006 // Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive 00007 // license for use of this work by or on behalf of the U.S. Government. 00008 // 00009 // This library is free software; you can redistribute it and/or modify 00010 // it under the terms of the GNU Lesser General Public License as 00011 // published by the Free Software Foundation; either version 2.1 of the 00012 // License, or (at your option) any later version. 00013 // 00014 // This library is distributed in the hope that it will be useful, but 00015 // WITHOUT ANY WARRANTY; without even the implied warranty of 00016 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00017 // Lesser General Public License for more details. 00018 // 00019 // You should have received a copy of the GNU Lesser General Public 00020 // License along with this library; if not, write to the Free Software 00021 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 00022 // USA 00023 // Questions? Contact Michael A. Heroux (maherou@sandia.gov) 00024 // 00025 // *********************************************************************** 00026 // @HEADER 00027 00028 #ifndef THYRA_EPETRA_OPERATOR_VIEW_EXTRACTOR_STD_HPP 00029 #define THYRA_EPETRA_OPERATOR_VIEW_EXTRACTOR_STD_HPP 00030 00031 #include "Thyra_EpetraOperatorViewExtractorBase.hpp" 00032 00033 00034 namespace Thyra { 00035 00036 00045 class EpetraOperatorViewExtractorStd : virtual public EpetraOperatorViewExtractorBase 00046 { 00047 public: 00048 00051 00053 bool isCompatible( const LinearOpBase<double> &fwdOp ) const; 00055 void getNonconstEpetraOpView( 00056 const RCP<LinearOpBase<double> > &fwdOp, 00057 const Ptr<RCP<Epetra_Operator> > &epetraOp, 00058 const Ptr<EOpTransp> &epetraOpTransp, 00059 const Ptr<EApplyEpetraOpAs> &epetraOpApplyAs, 00060 const Ptr<EAdjointEpetraOp> &epetraOpAdjointSupport, 00061 const Ptr<double> &epetraOpScalar 00062 ) const; 00064 void getEpetraOpView( 00065 const RCP<const LinearOpBase<double> > &fwdOp, 00066 const Ptr<RCP<const Epetra_Operator> > &epetraOp, 00067 const Ptr<EOpTransp> &epetraOpTransp, 00068 const Ptr<EApplyEpetraOpAs> &epetraOpApplyAs, 00069 const Ptr<EAdjointEpetraOp> &epetraOpAdjointSupport, 00070 const Ptr<double> &epetraOpScalar 00071 ) const; 00072 00074 00075 }; 00076 00077 00078 } // namespace Thyra 00079 00080 00081 #endif // THYRA_EPETRA_OPERATOR_VIEW_EXTRACTOR_STD_HPP
1.7.4