From: wolf Date: Mon, 29 Mar 2004 22:47:54 +0000 (+0000) Subject: Output more information. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e6cb36f1a0e0e4bfec29cef9cc14eeaa103a05fa;p=dealii-svn.git Output more information. git-svn-id: https://svn.dealii.org/trunk@8908 0785d39b-7218-0410-832d-ea1e28bc413d --- 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; }