Skip to content
Snippets Groups Projects
Commit 3686ed2d authored by Christian Engwer's avatar Christian Engwer
Browse files

[doc] document the IterativeSolver base class

parent cb141c89
No related branches found
No related tags found
No related merge requests found
......@@ -176,6 +176,14 @@ namespace Dune
}
};
/*!
\brief Base class for all implementations of iterative solvers
This class provides all storage, which is needed by the usual
iterative solvers. In additional it provides all the necessary
constructors, which are then only imported in the actual solver
implementation.
*/
template<class X, class Y>
class IterativeSolver : public InverseOperator<X,Y>{
public:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment