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

Small bugfix in new MTL4.

parent d6996c73
No related branches found
No related tags found
No related merge requests found
...@@ -279,8 +279,8 @@ namespace AMDiS { ...@@ -279,8 +279,8 @@ namespace AMDiS {
{ {
public: public:
template < class LinOp, class X, class B, class L, class R, class I > 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, int ell) int operator()(const LinOp& A, X& x, const B& b, const L& l, const R& r, I& iter, int ell)
{ return itl::gmres(A, x, b, iter, ell); } { return itl::gmres(A, x, b, l, r, iter, ell); }
}; };
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment