From 4faee3a50527d0c5c473778197a1369bcf5e726a Mon Sep 17 00:00:00 2001 From: wolf Date: Wed, 17 May 2000 13:30:35 +0000 Subject: [PATCH] Fix wrong calculation. git-svn-id: https://svn.dealii.org/trunk@2875 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/numerics/matrices.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/deal.II/include/numerics/matrices.h b/deal.II/deal.II/include/numerics/matrices.h index f56fae4baa..786a733324 100644 --- a/deal.II/deal.II/include/numerics/matrices.h +++ b/deal.II/deal.II/include/numerics/matrices.h @@ -405,7 +405,7 @@ class MatrixCreator * roughly constant, irrespective of the discretization, and that the * number of boundary nodes is #sqrt(N)# in 2d, the algorithm for * symmetric sparsity patterns is #O(sqrt(N)*m*log(m))#, while it - * would be #O(N*sqrt(N)*m*log(m))# for the general case; the latter + * would be #O(N*sqrt(N)*log(m))# for the general case; the latter * is too expensive to be performed. * * It seems as if we had to make clear not to overwrite the lines of other -- 2.39.5