From: bangerth Date: Thu, 23 Apr 2009 18:28:08 +0000 (+0000) Subject: Remove code that produces unnecessary output in a file that then just X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1b0d458aff691640cddd277551039f1d53b40345;p=dealii-svn.git Remove code that produces unnecessary output in a file that then just lies around. git-svn-id: https://svn.dealii.org/trunk@18713 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/deal.II/project_boundary_rt_01.cc b/tests/deal.II/project_boundary_rt_01.cc index 9f4f2c7143..c1ef005912 100644 --- a/tests/deal.II/project_boundary_rt_01.cc +++ b/tests/deal.II/project_boundary_rt_01.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2007, 2008 by the deal.II authors +// Copyright (C) 2007, 2008, 2009 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -156,13 +156,6 @@ void test_projection (const Triangulation& tr, | update_values); double err = integrate_error(dof, feval, u, f); deallog << err << std::endl; - - DataOut dout; - dout.attach_dof_handler(dof); - std::ofstream of("T.gnuplot"); - dout.add_data_vector(u, "u"); - dout.build_patches(3); - dout.write_gnuplot(of); }