From 2a4cde6cda1721fb6618fae7e3484447fb50834c Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 25 Sep 2009 13:51:52 +0000 Subject: [PATCH] Fix condition. git-svn-id: https://svn.dealii.org/trunk@19550 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/source/sparsity_tools.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 " -- 2.39.5