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

[doc] update *very* old comment

parent 3970da91
Branches
Tags
1 merge request!453simplify and cleanup the SolverFactory
......@@ -117,8 +117,8 @@ namespace Dune {
y += y1;
}
//! get matrix via *
const matrix_type& getmat () const override
//! get reference to matrix
virtual const matrix_type& getmat () const
{
return *_A_;
}
......
......@@ -116,7 +116,7 @@ namespace Dune {
typedef Y range_type;
typedef typename X::field_type field_type;
//! get matrix via *
//! get reference to matrix
virtual const M& getmat () const = 0;
};
......@@ -159,7 +159,7 @@ namespace Dune {
_A_->usmv(alpha,x,y);
}
//! get matrix via *
//! get reference to matrix
const M& getmat () const override
{
return *_A_;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment