From: bangerth Date: Thu, 24 May 2007 02:35:18 +0000 (+0000) Subject: Don't generate more output X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=389b576701da56f85337b63cb09d17569723af00;p=dealii-svn.git Don't generate more output git-svn-id: https://svn.dealii.org/trunk@14696 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/bits/joa_1.cc b/tests/bits/joa_1.cc index 05c12d3d29..c96fbe6a30 100644 --- a/tests/bits/joa_1.cc +++ b/tests/bits/joa_1.cc @@ -1076,32 +1076,6 @@ void LaplaceProblem::run () Point<2> p(x,y); VectorTools::point_value(dof_handler,solution,p); } - - - // After we have finished computing - // the solution on the finesh mesh, - // and writing all the grids to - // disk, we want to also write the - // actual solution on this final - // mesh to a file. As already done - // in one of the previous examples, - // we use the EPS format for - // output, and to obtain a - // reasonable view on the solution, - // we rescale the z-axis by a - // factor of four. - DataOutBase::EpsFlags eps_flags; - eps_flags.z_scaling = 4; - - DataOut data_out; - data_out.set_flags (eps_flags); - - data_out.attach_dof_handler (dof_handler); - data_out.add_data_vector (solution, "solution"); - data_out.build_patches (); - - std::ofstream output ("final-solution.eps"); - data_out.write_eps (output); }