From: wolf Date: Wed, 17 May 2000 13:30:35 +0000 (+0000) Subject: Fix wrong calculation. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4faee3a50527d0c5c473778197a1369bcf5e726a;p=dealii-svn.git Fix wrong calculation. git-svn-id: https://svn.dealii.org/trunk@2875 0785d39b-7218-0410-832d-ea1e28bc413d --- 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