Skip to content
Snippets Groups Projects
Commit 8e9c8aa6 authored by Thomas Witkowski's avatar Thomas Witkowski
Browse files

Fix a small bug in tfqmr solver integration.

parent c6efc88b
No related branches found
No related tags found
No related merge requests found
......@@ -220,8 +220,10 @@ namespace AMDiS {
{
public:
template < class LinOp, class X, class B, class L, class R, class I >
int operator()(const LinOp& A, X& x, const B& b, const L&, const R&, I& iter)
{ return itl::tfqmr(A, x, b, iter); }
int operator()(const LinOp& A, X& x, const B& b, const L& l, const R& r, I& iter)
{
return itl::tfqmr(A, x, b, l, r, iter);
}
};
......
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