From 259e185525ffd88598b685ad82511b8f5e352351 Mon Sep 17 00:00:00 2001 From: bangerth Date: Fri, 12 Mar 2010 16:51:21 +0000 Subject: [PATCH] Remove debug output. git-svn-id: https://svn.dealii.org/trunk@20812 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/grid_in_3d_02.cc | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/tests/deal.II/grid_in_3d_02.cc b/tests/deal.II/grid_in_3d_02.cc index 129cfe5cc9..9f3de938a0 100644 --- a/tests/deal.II/grid_in_3d_02.cc +++ b/tests/deal.II/grid_in_3d_02.cc @@ -29,6 +29,10 @@ #include #include +// #include +// #include + + #include #include @@ -68,9 +72,17 @@ void test (const char *filename) hash += (index * i * c->vertex_index(i)) % (tria.n_active_cells()+1); deallog << " hash=" << hash << std::endl; - GridOut grid_out; - std::ofstream gnufile("square.gnuplot"); - grid_out.write_gnuplot (tria, gnufile); +// DoFHandler dh (tria); +// FE_Q fe(1); +// dh.distribute_dofs (fe); + +// DataOut d_o; +// d_o.attach_dof_handler (dh); +// Vector zero (dh.n_dofs()); +// d_o.add_data_vector (zero, "Zero"); +// d_o.build_patches (); +// std::ofstream gnufile("xx.vtk"); +// d_o.write_vtk (gnufile); } -- 2.39.5