Commit 5b487573 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed TFQMR solver

parent 803fae22
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -56,9 +56,9 @@ class TFQMR : public Object,

   void setPreconditioner( const PreconditionerPointer& preconditioner );

   template< typename VectorPointer,
             typename ResidueGetter = LinearResidueGetter< Matrix, typename VectorPointer::ObjectType >  >
   bool solve( const VectorPointer& b, VectorPointer& x );
   template< typename Vector,
             typename ResidueGetter = LinearResidueGetter< Matrix, Vector >  >
   bool solve( const Vector& b, Vector& x );

   ~TFQMR();