From d137ace5ce3f68bbb1a4ce5820928e7c6249c40f Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 11 Feb 2000 08:27:49 +0000 Subject: [PATCH] The culprit *was* this line, but the patch from v1.2 to v1.3 was wrong: one should write `signed' when one means so, not `unsigned'. git-svn-id: https://svn.dealii.org/trunk@2380 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/source/sparsity_pattern.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/lac/source/sparsity_pattern.cc b/deal.II/lac/source/sparsity_pattern.cc index 09170a0459..ef74fb9cd6 100644 --- a/deal.II/lac/source/sparsity_pattern.cc +++ b/deal.II/lac/source/sparsity_pattern.cc @@ -534,7 +534,7 @@ SparsityPattern::print_gnuplot (ostream &out) const for (unsigned int i=0; i(colnums[j]) << endl; AssertThrow (out, ExcIO()); } @@ -551,7 +551,7 @@ SparsityPattern::bandwidth () const if (colnums[j] != invalid_entry) { if (static_cast(abs(static_cast(i-colnums[j]))) > b) - b = abs(static_cast(i-colnums[j])); + b = abs(static_cast(i-colnums[j])); } else // leave if at the end of -- 2.39.5