10#ifndef BELOS_FIXEDPOINT_ITERATION_HPP
11#define BELOS_FIXEDPOINT_ITERATION_HPP
30 template <
class ScalarType,
class MV>
34 Teuchos::RCP<const MV>
R;
37 Teuchos::RCP<const MV>
Z;
43template<
class ScalarType,
class MV,
class OP>
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.
Collection of types and exceptions used within the Belos solvers.
virtual FixedPointIterationState< ScalarType, MV > getState() const =0
Get the current state of the linear solver.
virtual void initializeFixedPoint(FixedPointIterationState< ScalarType, MV > &newstate)=0
Initialize the solver to an iterate, providing a complete state.
Alternative run-time polymorphic interface for operators.
Structure to contain pointers to FixedPointIteration state variables.
Teuchos::RCP< const MV > R
The current residual.
Teuchos::RCP< const MV > Z
The current preconditioned residual.
FixedPointIterationState()