Skip to content
Snippets Groups Projects
Commit 1e08036f authored by Robert K's avatar Robert K
Browse files

[bugfix][RestartedGMResSolver] signature of method apply was wrong when real_type != double.

parent e8d16384
No related branches found
No related tags found
No related merge requests found
...@@ -1195,7 +1195,7 @@ namespace Dune { ...@@ -1195,7 +1195,7 @@ namespace Dune {
\copydoc InverseOperator::apply(X&,Y&,double,InverseOperatorResult&) \copydoc InverseOperator::apply(X&,Y&,double,InverseOperatorResult&)
*/ */
virtual void apply (X& x, Y& b, real_type reduction, InverseOperatorResult& res) virtual void apply (X& x, Y& b, double reduction, InverseOperatorResult& res)
{ {
const real_type EPSILON = 1e-80; const real_type EPSILON = 1e-80;
const int m = _restart; const int m = _restart;
......
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