From bd30b80360443fdb05cc466959fcb4b1842a59c4 Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Mon, 28 May 2001 11:26:59 +0000 Subject: [PATCH] round-off git-svn-id: https://svn.dealii.org/trunk@4733 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/lac/full_matrix.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/lac/full_matrix.cc b/tests/lac/full_matrix.cc index ea3d7fa15f..6c4d216248 100644 --- a/tests/lac/full_matrix.cc +++ b/tests/lac/full_matrix.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1998, 1999, 2000 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2001 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -95,7 +95,7 @@ main () C(i+1,i) = sin(i+1); C(i,i+1) = -sin(i+1); - C.print_formatted (logfile); + C.print_formatted (logfile,3,false); deallog << "l1-norm: " << C.l1_norm() << std::endl; D = C; D.gauss_jordan(); @@ -108,7 +108,7 @@ main () C.Tmmult(A,H); } - A.print_formatted (logfile); + A.print_formatted (logfile,3,false); Vector u(5); GrowingVectorMemory > mem; @@ -135,7 +135,7 @@ main () } H = A; H.gauss_jordan(); - H.print_formatted (logfile); + H.print_formatted (logfile,3,false); if (true) { u = 1.; -- 2.39.5