From 48d4945051d8012be1906d6da6e5015d14164ad3 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 29 Feb 2008 22:07:46 +0000 Subject: [PATCH] Use a more readable format for output. git-svn-id: https://svn.dealii.org/trunk@15819 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/lac/sparse_ilu_inverse.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/lac/sparse_ilu_inverse.cc b/tests/lac/sparse_ilu_inverse.cc index 24f02cf90e..4087a46012 100644 --- a/tests/lac/sparse_ilu_inverse.cc +++ b/tests/lac/sparse_ilu_inverse.cc @@ -76,10 +76,10 @@ int main() } deallog << "Matrix A:" << std::endl; - A.print_formatted (deallog.get_file_stream()); + A.print_formatted (deallog.get_file_stream(), 3, false); deallog << "Matrix A^{-1}:" << std::endl; - inverse.print_formatted (deallog.get_file_stream()); + inverse.print_formatted (deallog.get_file_stream(), 3, false); deallog << std::endl; } -- 2.39.5