Teko  Version of the Day
 All Classes Files Functions Variables Pages
Teko_EpetraInverseOpWrapper.cpp
1 // @HEADER
2 // *****************************************************************************
3 // Teko: A package for block and physics based preconditioning
4 //
5 // Copyright 2010 NTESS and the Teko contributors.
6 // SPDX-License-Identifier: BSD-3-Clause
7 // *****************************************************************************
8 // @HEADER
9 
10 #include "Teko_EpetraInverseOpWrapper.hpp"
11 
12 using namespace Teuchos;
13 
14 namespace Teko {
15 namespace Epetra {
16 
17 int EpetraInverseOpWrapper::Apply(const Epetra_MultiVector& X, Epetra_MultiVector& Y) const {
18  return EpetraOperatorWrapper::ApplyInverse(X, Y);
19 }
20 
21 int EpetraInverseOpWrapper::ApplyInverse(const Epetra_MultiVector& X, Epetra_MultiVector& Y) const {
22  return EpetraOperatorWrapper::Apply(X, Y);
23 }
24 
25 } // end namespace Epetra
26 } // end namespace Teko