47 #include "Teko_TpetraInverseOpWrapper.hpp" 
   49 using namespace Teuchos;
 
   52 namespace TpetraHelpers {
 
   54 void TpetraInverseOpWrapper::apply(
const Tpetra::MultiVector<ST,LO,GO,NT>& X, Tpetra::MultiVector<ST,LO,GO,NT>& Y,Teuchos::ETransp mode,ST alpha, ST beta)
 const 
   55 { TpetraOperatorWrapper::apply(X,Y,mode,alpha,beta);}
 
   57 void TpetraInverseOpWrapper::applyInverse(
const Tpetra::MultiVector<ST,LO,GO,NT>& X, Tpetra::MultiVector<ST,LO,GO,NT>& Y,Teuchos::ETransp mode,ST alpha, ST beta)
 const 
   58 { TpetraOperatorWrapper::apply(X,Y,mode,alpha,beta);}