18#ifndef BELOS_TFQMR_ITER_HPP
19#define BELOS_TFQMR_ITER_HPP
38#include "Teuchos_SerialDenseMatrix.hpp"
39#include "Teuchos_SerialDenseVector.hpp"
40#include "Teuchos_ScalarTraits.hpp"
41#include "Teuchos_ParameterList.hpp"
42#include "Teuchos_TimeMonitor.hpp"
61 template <
class ScalarType,
class MV>
65 Teuchos::RCP<const MV>
R;
66 Teuchos::RCP<const MV>
W;
67 Teuchos::RCP<const MV>
U;
69 Teuchos::RCP<const MV>
D;
70 Teuchos::RCP<const MV>
V;
73 Rtilde(Teuchos::null),
D(Teuchos::null),
V(Teuchos::null)
94 template <
class ScalarType,
class MV,
class OP>
102 typedef Teuchos::ScalarTraits<ScalarType>
SCT;
112 Teuchos::ParameterList ¶ms );
181 state.solnUpdate = solnUpdate_;
221 TEUCHOS_TEST_FOR_EXCEPTION(blockSize!=1,std::invalid_argument,
222 "Belos::TFQMRIter::setBlockSize(): Cannot use a block size that is not one.");
242 const Teuchos::RCP<LinearProblem<ScalarType,MV,OP> > lp_;
243 const Teuchos::RCP<OutputManager<ScalarType> > om_;
244 const Teuchos::RCP<StatusTest<ScalarType,MV,OP> > stest_;
252 std::vector<ScalarType> alpha_, rho_, rho_old_;
253 std::vector<MagnitudeType> tau_, cs_, theta_;
266 bool stateStorageInitialized_;
276 Teuchos::RCP<MV> U_, AU_;
277 Teuchos::RCP<MV> Rtilde_;
280 Teuchos::RCP<MV> solnUpdate_;
290 template <
class ScalarType,
class MV,
class OP>
294 Teuchos::ParameterList &
306 stateStorageInitialized_(false),
313 template <
class ScalarType,
class MV,
class OP>
314 Teuchos::RCP<const MV>
317 MagnitudeType one = Teuchos::ScalarTraits<MagnitudeType>::one();
319 (*normvec)[0] = Teuchos::ScalarTraits<MagnitudeType>::squareroot( 2*iter_ + one )*tau_[0];
321 return Teuchos::null;
327 template <
class ScalarType,
class MV,
class OP>
328 void TFQMRIter<ScalarType,MV,OP>::setStateSize ()
330 if (!stateStorageInitialized_) {
333 Teuchos::RCP<const MV> lhsMV = lp_->getLHS();
334 Teuchos::RCP<const MV> rhsMV = lp_->getRHS();
335 if (lhsMV == Teuchos::null && rhsMV == Teuchos::null) {
336 stateStorageInitialized_ =
false;
343 if (R_ == Teuchos::null) {
345 Teuchos::RCP<const MV> tmp = ( (rhsMV!=Teuchos::null)? rhsMV: lhsMV );
346 TEUCHOS_TEST_FOR_EXCEPTION(tmp == Teuchos::null,std::invalid_argument,
347 "Belos::TFQMRIter::setStateSize(): linear problem does not specify multivectors to clone from.");
348 R_ = MVT::Clone( *tmp, 1 );
349 D_ = MVT::Clone( *tmp, 1 );
350 V_ = MVT::Clone( *tmp, 1 );
351 solnUpdate_ = MVT::Clone( *tmp, 1 );
355 stateStorageInitialized_ =
true;
362 template <
class ScalarType,
class MV,
class OP>
366 if (!stateStorageInitialized_)
369 TEUCHOS_TEST_FOR_EXCEPTION(!stateStorageInitialized_,std::invalid_argument,
370 "Belos::TFQMRIter::initialize(): Cannot initialize state storage!");
374 std::string errstr(
"Belos::TFQMRIter::initialize(): Specified multivectors must have a consistent length and width.");
377 const MagnitudeType MTzero = Teuchos::ScalarTraits<MagnitudeType>::zero();
379 if (newstate.
R != Teuchos::null) {
382 std::invalid_argument, errstr );
384 std::invalid_argument, errstr );
387 if (newstate.
R != R_) {
403 lp_->apply( *U_, *V_ );
414 TEUCHOS_TEST_FOR_EXCEPTION(newstate.
R == Teuchos::null,std::invalid_argument,
415 "Belos::TFQMRIter::initialize(): TFQMRIterState does not have initial residual.");
425 template <
class ScalarType,
class MV,
class OP>
431 if (initialized_ ==
false) {
436 const ScalarType STone = Teuchos::ScalarTraits<ScalarType>::one();
437 const MagnitudeType MTone = Teuchos::ScalarTraits<MagnitudeType>::one();
438 const MagnitudeType MTzero = Teuchos::ScalarTraits<MagnitudeType>::zero();
439 const ScalarType STzero = Teuchos::ScalarTraits<ScalarType>::zero();
440 ScalarType eta = STzero, beta = STzero;
445 Teuchos::RCP<MV> cur_soln_vec = lp_->getCurrLHSVec();
449 "Belos::TFQMRIter::iterate(): current linear system has more than one vector!" );
455 while (stest_->checkStatus(
this) !=
Passed) {
457 for (
int iIter=0; iIter<2; iIter++)
466 alpha_[0] = rho_old_[0]/alpha_[0];
481 MVT::MvAddMv( STone, *U_, (theta_[0]*theta_[0]/alpha_[0])*eta, *D_, *D_ );
495 lp_->apply( *U_, *AU_ );
503 theta_[0] /= tau_[0];
505 cs_[0] = MTone / Teuchos::ScalarTraits<MagnitudeType>::squareroot(MTone + theta_[0]*theta_[0]);
506 tau_[0] *= theta_[0]*cs_[0];
507 eta = cs_[0]*cs_[0]*alpha_[0];
514 MVT::MvAddMv( STone, *solnUpdate_, eta, *D_, *solnUpdate_ );
519 if ( tau_[0] == MTzero ) {
530 beta = rho_[0]/rho_old_[0];
531 rho_old_[0] = rho_[0];
544 lp_->apply( *U_, *AU_ );
Belos header file which uses auto-configuration information to include necessary C++ headers.
Pure virtual base class which describes the basic interface to the linear solver iteration.
Class which describes the linear problem to be solved by the iterative solver.
Declaration of basic traits for the multivector type.
Class which defines basic traits for the operator type.
Class which manages the output and verbosity of the Belos solvers.
Pure virtual base class for defining the status testing capabilities of Belos.
Collection of types and exceptions used within the Belos solvers.
BelosError(const std::string &what_arg)
Iteration()
Default Constructor.
Traits class which defines basic operations on multivectors.
static Teuchos::RCP< MV > CloneCopy(const MV &mv)
Creates a new MV and copies contents of mv into the new vector (deep copy).
static ptrdiff_t GetGlobalLength(const MV &mv)
Return the number of rows in the given multivector mv.
static void MvNorm(const MV &mv, std::vector< typename Teuchos::ScalarTraits< ScalarType >::magnitudeType > &normvec, NormType type=TwoNorm)
Compute the norm of each individual vector of mv. Upon return, normvec[i] holds the value of ,...
static void MvDot(const MV &mv, const MV &A, std::vector< ScalarType > &b)
Compute a vector b where the components are the individual dot-products of the i-th columns of A and ...
static void MvAddMv(const ScalarType alpha, const MV &A, const ScalarType beta, const MV &B, MV &mv)
Replace mv with .
static void MvInit(MV &mv, const ScalarType alpha=Teuchos::ScalarTraits< ScalarType >::zero())
Replace each element of the vectors in mv with alpha.
static int GetNumberVecs(const MV &mv)
Obtain the number of vectors in mv.
static void Assign(const MV &A, MV &mv)
mv := A
Class which defines basic traits for the operator type.
Belos's basic output manager for sending information of select verbosity levels to the appropriate ou...
A pure virtual class for defining the status tests for the Belos iterative solvers.
Teuchos::ScalarTraits< ScalarType > SCT
void resetNumIters(int iter=0)
Reset the iteration count.
virtual ~TFQMRIter()
Belos::TFQMRIter destructor.
void setBlockSize(int blockSize)
Set the blocksize.
bool isInitialized()
States whether the solver has been initialized or not.
OperatorTraits< ScalarType, MV, OP > OPT
Teuchos::RCP< const MV > getNativeResiduals(std::vector< MagnitudeType > *norms) const
void initialize()
Initialize the solver with the initial vectors from the linear problem or random data.
void iterate()
This method performs TFQMR iterations until the status test indicates the need to stop or an error oc...
SCT::magnitudeType MagnitudeType
const LinearProblem< ScalarType, MV, OP > & getProblem() const
Get a constant reference to the linear problem.
TFQMRIterState< ScalarType, MV > getState() const
Get the current state of the linear solver.
Teuchos::RCP< MV > getCurrentUpdate() const
Get the current update to the linear system.
int getBlockSize() const
Get the blocksize to be used by the iterative solver in solving this linear problem.
MultiVecTraits< ScalarType, MV > MVT
TFQMRIter(const Teuchos::RCP< LinearProblem< ScalarType, MV, OP > > &problem, const Teuchos::RCP< OutputManager< ScalarType > > &printer, const Teuchos::RCP< StatusTest< ScalarType, MV, OP > > &tester, Teuchos::ParameterList ¶ms)
Belos::TFQMRIter constructor.
int getNumIters() const
Get the current iteration count.
void initializeTFQMR(const TFQMRIterState< ScalarType, MV > &newstate)
Initialize the solver to an iterate, providing a complete state.
TFQMRIterateFailure is thrown when the TFQMRIter object is unable to compute the next iterate in the ...
TFQMRIterateFailure(const std::string &what_arg)
Structure to contain pointers to TFQMRIter state variables.
Teuchos::RCP< const MV > W
Teuchos::RCP< const MV > V
Teuchos::RCP< const MV > Rtilde
Teuchos::RCP< const MV > R
The current residual basis.
Teuchos::RCP< const MV > D
Teuchos::RCP< const MV > U