From 8e9c8aa676633ab31ea616711c2066dd75fcbd9b Mon Sep 17 00:00:00 2001 From: Thomas Witkowski <thomas.witkowski@gmx.de> Date: Mon, 28 Sep 2009 12:20:04 +0000 Subject: [PATCH] Fix a small bug in tfqmr solver integration. --- AMDiS/src/ITL_Solver.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/AMDiS/src/ITL_Solver.h b/AMDiS/src/ITL_Solver.h index 558dcd0d..773e8130 100644 --- a/AMDiS/src/ITL_Solver.h +++ b/AMDiS/src/ITL_Solver.h @@ -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); + } }; -- GitLab