Skip to content
Snippets Groups Projects
Commit 5b487573 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed TFQMR solver

parent 803fae22
No related branches found
No related tags found
No related merge requests found
......@@ -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();
......
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