From: Martin Kronbichler Date: Mon, 8 Jun 2009 04:00:37 +0000 (+0000) Subject: Limit number of digits that are written to file. X-Git-Tag: v8.0.0~7631 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ceb2b459bb326227d8ec3e1872da0dbbcae177ab;p=dealii.git Limit number of digits that are written to file. git-svn-id: https://svn.dealii.org/trunk@18916 0785d39b-7218-0410-832d-ea1e28bc413d --- 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);