From effbfc9a268f621b86cbfdf9a98d9103eaaad25b Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 29 Mar 2004 22:47:54 +0000 Subject: [PATCH] Output more information. git-svn-id: https://svn.dealii.org/trunk@8908 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/bits/dof_constraints_09.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/bits/dof_constraints_09.cc b/tests/bits/dof_constraints_09.cc index 1e19a13c4c..5467bab683 100644 --- a/tests/bits/dof_constraints_09.cc +++ b/tests/bits/dof_constraints_09.cc @@ -104,7 +104,8 @@ void test () // and output what we have for (BlockSparseMatrix::const_iterator i=A.begin(); i!=A.end(); ++i) - deallog << i->row() << ' ' << i->column() << ' ' << i->value() + deallog << i->block_row() << ' ' << i->block_column() << ' ' + << i->row() << ' ' << i->column() << ' ' << i->value() << std::endl; } -- 2.39.5