From: Wolfgang Bangerth Date: Fri, 25 Sep 2009 13:51:52 +0000 (+0000) Subject: Fix condition. X-Git-Tag: v8.0.0~7035 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2a4cde6cda1721fb6618fae7e3484447fb50834c;p=dealii.git Fix condition. git-svn-id: https://svn.dealii.org/trunk@19550 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/source/sparsity_tools.cc b/deal.II/lac/source/sparsity_tools.cc index c65686a150..04efe8446d 100644 --- a/deal.II/lac/source/sparsity_tools.cc +++ b/deal.II/lac/source/sparsity_tools.cc @@ -343,7 +343,7 @@ namespace SparsityTools // an error if we got // here and starting // indices were given - Assert (starting_indices.size() > 0, + Assert (starting_indices.size() == 0, ExcMessage ("The input graph appears to have more than one " "component, but as stated in the documentation " "we only want to reorder such graphs if no "