From ceb2b459bb326227d8ec3e1872da0dbbcae177ab Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Mon, 8 Jun 2009 04:00:37 +0000 Subject: [PATCH] Limit number of digits that are written to file. git-svn-id: https://svn.dealii.org/trunk@18916 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/aniso/solution_transfer.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/aniso/solution_transfer.cc b/tests/aniso/solution_transfer.cc index a39718976b..044ae39760 100644 --- a/tests/aniso/solution_transfer.cc +++ b/tests/aniso/solution_transfer.cc @@ -121,6 +121,8 @@ void transfer(std::ostream &out) int main() { std::ofstream logfile("solution_transfer/output"); + deallog << std::setprecision (4); + logfile << std::setprecision (4); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); -- 2.39.5