From 72a2c8dcbdaca5942ca2730320baafff9e7be9e2 Mon Sep 17 00:00:00 2001 From: wolf Date: Fri, 16 Apr 1999 11:28:54 +0000 Subject: [PATCH] Fix mis-spelling. git-svn-id: https://svn.dealii.org/trunk@1164 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/solver_gmres.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/lac/include/lac/solver_gmres.h b/deal.II/lac/include/lac/solver_gmres.h index 7d73a7ae09..450b7ad2e5 100644 --- a/deal.II/lac/include/lac/solver_gmres.h +++ b/deal.II/lac/include/lac/solver_gmres.h @@ -156,7 +156,7 @@ SolverGMRES::solve (const Matrix& A, // if the size of the matrix is very small, // then only allocate a number of vectors // which is needed - const unsigned int n_tmp_vectors = (A.m()+3 > max_n_tmp_vector ? + const unsigned int n_tmp_vectors = (A.m()+3 > max_n_tmp_vectors ? max_n_tmp_vectors : A.m()+3); -- 2.39.5