15#ifndef BELOS_MATORTHOMANAGER_HPP
16#define BELOS_MATORTHOMANAGER_HPP
45 template <
class ScalarType,
class MV,
class OP>
48 Teuchos::RCP<const OP>
_Op;
65 void setOp( Teuchos::RCP<const OP> Op ) {
71 Teuchos::RCP<const OP>
getOp()
const {
return _Op; }
84 Teuchos::SerialDenseMatrix<int,ScalarType>& Z )
const {
85 typedef Teuchos::ScalarTraits<ScalarType> SCT;
89 Teuchos::RCP<const MV> P,Q;
94 if ( MVT::GetNumberVecs(X) < MVT::GetNumberVecs(Y) ) {
95 R = MVT::Clone(X,MVT::GetNumberVecs(X));
96 OPT::Apply(*
_Op,X,*R);
98 Q = Teuchos::rcp( &Y,
false );
101 P = Teuchos::rcp( &X,
false );
102 R = MVT::Clone(Y,MVT::GetNumberVecs(Y));
103 OPT::Apply(*
_Op,Y,*R);
108 P = Teuchos::rcp( &X,
false );
109 Q = Teuchos::rcp( &Y,
false );
112 MVT::MvTransMv(SCT::one(),*P,*Q,Z);
121 void innerProd(
const MV& X,
const MV& Y, Teuchos::RCP<const MV> MY,
122 Teuchos::SerialDenseMatrix<int,ScalarType>& Z )
const {
123 typedef Teuchos::ScalarTraits<ScalarType> SCT;
126 Teuchos::RCP<MV> P,Q;
128 if ( MY == Teuchos::null ) {
133 MVT::MvTransMv(SCT::one(),X,*MY,Z);
137 MVT::MvTransMv(SCT::one(),X,Y,Z);
143 void norm(
const MV& X, std::vector<
typename Teuchos::ScalarTraits<ScalarType>::magnitudeType >& normvec )
const {
144 norm(X,Teuchos::null,normvec);
166 Teuchos::RCP<const MV> MX,
167 std::vector<
typename Teuchos::ScalarTraits<ScalarType>::magnitudeType>& normvec)
const
169 typedef Teuchos::ScalarTraits<ScalarType> SCT;
170 typedef Teuchos::ScalarTraits<typename SCT::magnitudeType> MT;
174 int nvecs = MVT::GetNumberVecs(X);
180 if (normvec.size() <
static_cast<size_t>(nvecs))
181 normvec.resize (nvecs);
185 MX = Teuchos::rcp(&X,
false);
186 MVT::MvNorm(X, normvec);
193 if(MX == Teuchos::null) {
194 Teuchos::RCP<MV> tempVec = MVT::Clone(X,nvecs);
195 OPT::Apply(*
_Op,X,*tempVec);
201 const int numColsMX = MVT::GetNumberVecs(*MX);
202 TEUCHOS_TEST_FOR_EXCEPTION(numColsMX < nvecs, std::invalid_argument,
203 "MatOrthoManager::norm(X, MX, normvec): "
204 "MX has fewer columns than X: "
205 "MX has " << numColsMX <<
" columns, "
206 "and X has " << nvecs <<
" columns.");
209 std::vector<ScalarType> dotvec(nvecs);
210 MVT::MvDot(X,*MX,dotvec);
211 for (
int i=0; i<nvecs; i++) {
212 normvec[i] = MT::squareroot( SCT::magnitude(dotvec[i]) );
239 virtual void project ( MV &X, Teuchos::RCP<MV> MX,
240 Teuchos::Array<Teuchos::RCP<Teuchos::SerialDenseMatrix<int,ScalarType> > > C,
241 Teuchos::ArrayView<Teuchos::RCP<const MV> > Q)
const = 0;
248 Teuchos::Array<Teuchos::RCP<Teuchos::SerialDenseMatrix<int,ScalarType> > > C,
249 Teuchos::ArrayView<Teuchos::RCP<const MV> > Q)
const {
275 Teuchos::RCP<Teuchos::SerialDenseMatrix<int,ScalarType> > B )
const = 0;
280 virtual int normalize ( MV &X, Teuchos::RCP<Teuchos::SerialDenseMatrix<int,ScalarType> > B )
const {
289 Teuchos::Array<Teuchos::RCP<Teuchos::SerialDenseMatrix<int,ScalarType> > > C,
290 Teuchos::RCP<Teuchos::SerialDenseMatrix<int,ScalarType> > B,
291 Teuchos::ArrayView<Teuchos::RCP<const MV> > Q)
const = 0;
295 Teuchos::Array<Teuchos::RCP<Teuchos::SerialDenseMatrix<int,ScalarType> > > C,
296 Teuchos::RCP<Teuchos::SerialDenseMatrix<int,ScalarType> > B,
297 Teuchos::ArrayView<Teuchos::RCP<const MV> > Q)
const
341 Teuchos::Array<Teuchos::RCP<Teuchos::SerialDenseMatrix<int,ScalarType> > > C,
342 Teuchos::RCP<Teuchos::SerialDenseMatrix<int,ScalarType> > B,
343 Teuchos::ArrayView<Teuchos::RCP<const MV> > Q)
const
354 virtual typename Teuchos::ScalarTraits<ScalarType>::magnitudeType
362 virtual typename Teuchos::ScalarTraits<ScalarType>::magnitudeType
367 virtual typename Teuchos::ScalarTraits<ScalarType>::magnitudeType
376 virtual typename Teuchos::ScalarTraits<ScalarType>::magnitudeType
377 orthogError(
const MV &X1, Teuchos::RCP<const MV> MX1,
const MV &X2)
const = 0;
Belos header file which uses auto-configuration information to include necessary C++ headers.
Declaration of basic traits for the multivector type.
Class which defines basic traits for the operator type.
Templated virtual class for providing orthogonalization/orthonormalization methods.
Collection of types and exceptions used within the Belos solvers.
void innerProd(const MV &X, const MV &Y, Teuchos::RCP< const MV > MY, Teuchos::SerialDenseMatrix< int, ScalarType > &Z) const
Provides the inner product defining the orthogonality concepts, using the provided operator....
virtual int normalize(MV &X, Teuchos::RCP< Teuchos::SerialDenseMatrix< int, ScalarType > > B) const
This method calls normalize(X,Teuchos::null,B); see documentation for that function.
virtual ~MatOrthoManager()
Destructor.
MatOrthoManager(Teuchos::RCP< const OP > Op=Teuchos::null)
Default constructor.
void innerProd(const MV &X, const MV &Y, Teuchos::SerialDenseMatrix< int, ScalarType > &Z) const
Provides the inner product defining the orthogonality concepts, using the provided operator.
int projectAndNormalize(MV &X, Teuchos::RCP< MV > MX, Teuchos::Array< Teuchos::RCP< Teuchos::SerialDenseMatrix< int, ScalarType > > > C, Teuchos::RCP< Teuchos::SerialDenseMatrix< int, ScalarType > > B, Teuchos::ArrayView< Teuchos::RCP< const MV > > Q) const
Given a set of bases Q[i] and a multivector X, this method computes an orthonormal basis for .
virtual int projectAndNormalizeWithMxImpl(MV &X, Teuchos::RCP< MV > MX, Teuchos::Array< Teuchos::RCP< Teuchos::SerialDenseMatrix< int, ScalarType > > > C, Teuchos::RCP< Teuchos::SerialDenseMatrix< int, ScalarType > > B, Teuchos::ArrayView< Teuchos::RCP< const MV > > Q) const =0
virtual Teuchos::ScalarTraits< ScalarType >::magnitudeType orthogError(const MV &X1, Teuchos::RCP< const MV > MX1, const MV &X2) const =0
This method computes the error in orthogonality of two multivectors. The method has the option of exp...
virtual void project(MV &X, Teuchos::RCP< MV > MX, Teuchos::Array< Teuchos::RCP< Teuchos::SerialDenseMatrix< int, ScalarType > > > C, Teuchos::ArrayView< Teuchos::RCP< const MV > > Q) const =0
Given a list of (mutually and internally) orthonormal bases Q, this method takes a multivector X and ...
virtual Teuchos::ScalarTraits< ScalarType >::magnitudeType orthonormError(const MV &X) const
This method computes the error in orthonormality of a multivector.
void norm(const MV &X, Teuchos::RCP< const MV > MX, std::vector< typename Teuchos::ScalarTraits< ScalarType >::magnitudeType > &normvec) const
Compute norm of each column of X.
void norm(const MV &X, std::vector< typename Teuchos::ScalarTraits< ScalarType >::magnitudeType > &normvec) const
Provides the norm induced by innerProd().
virtual Teuchos::ScalarTraits< ScalarType >::magnitudeType orthonormError(const MV &X, Teuchos::RCP< const MV > MX) const =0
This method computes the error in orthonormality of a multivector. The method has the option of explo...
virtual int normalize(MV &X, Teuchos::RCP< MV > MX, Teuchos::RCP< Teuchos::SerialDenseMatrix< int, ScalarType > > B) const =0
This method takes a multivector X and attempts to compute an orthonormal basis for ,...
virtual int projectAndNormalizeImpl(MV &X, Teuchos::Array< Teuchos::RCP< Teuchos::SerialDenseMatrix< int, ScalarType > > > C, Teuchos::RCP< Teuchos::SerialDenseMatrix< int, ScalarType > > B, Teuchos::ArrayView< Teuchos::RCP< const MV > > Q) const
void setOp(Teuchos::RCP< const OP > Op)
Set operator.
virtual void project(MV &X, Teuchos::Array< Teuchos::RCP< Teuchos::SerialDenseMatrix< int, ScalarType > > > C, Teuchos::ArrayView< Teuchos::RCP< const MV > > Q) const
This method calls project(X,Teuchos::null,C,Q); see documentation for that function.
Teuchos::RCP< const OP > _Op
virtual Teuchos::ScalarTraits< ScalarType >::magnitudeType orthogError(const MV &X1, const MV &X2) const
This method computes the error in orthogonality of two multivectors. This method.
Teuchos::RCP< const OP > getOp() const
Get operator.
Traits class which defines basic operations on multivectors.
Class which defines basic traits for the operator type.
OrthoManager()
Default constructor.