From: Wolfgang Bangerth Date: Wed, 27 May 2009 12:47:50 +0000 (+0000) Subject: Limit output and make sure that small numbers are suppressed. X-Git-Tag: v8.0.0~7657 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a6c5b0c8b02808bd2c80d80e0cd2cdbce70ca62e;p=dealii.git Limit output and make sure that small numbers are suppressed. git-svn-id: https://svn.dealii.org/trunk@18880 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/deal.II/grid_transform_3d.cc b/tests/deal.II/grid_transform_3d.cc index c08aa9343f..a20233b1b0 100644 --- a/tests/deal.II/grid_transform_3d.cc +++ b/tests/deal.II/grid_transform_3d.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2009 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -88,6 +88,8 @@ int main () GridOut grid_out; std::ofstream out("grid_transform_3d/output"); + out.precision (5); + out << std::fixed; grid_out.write_gnuplot(tria, out); tria.clear();