From 292b8a4a4bb728484e159aafb23d1c12685ac173 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 29 Mar 2006 18:31:47 +0000 Subject: [PATCH] Undo accidental checkin git-svn-id: https://svn.dealii.org/trunk@12762 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/grid_in_3d.cc | 42 ++++++++++--------------------------- 1 file changed, 11 insertions(+), 31 deletions(-) diff --git a/tests/deal.II/grid_in_3d.cc b/tests/deal.II/grid_in_3d.cc index 6bc601a4a3..e7e1660be7 100644 --- a/tests/deal.II/grid_in_3d.cc +++ b/tests/deal.II/grid_in_3d.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2002, 2003, 2004, 2005, 2006 by the deal.II authors +// Copyright (C) 2002, 2003, 2004, 2005 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -26,11 +26,6 @@ #include #include #include -#include -#include -#include -#include -#include #include #include @@ -52,7 +47,7 @@ void test (const char *filename) try { - gi.read_ucd (in); + gi.read_xda (in); } catch (std::exception &exc) { @@ -71,21 +66,6 @@ void test (const char *filename) for (unsigned int i=0; i::vertices_per_cell; ++i) hash += (index * i * c->vertex_index(i)) % (tria.n_active_cells()+1); deallog << " hash=" << hash << std::endl; - - FE_Q fe(1); - DoFHandler dh (tria); - dh.distribute_dofs(fe); - - Vector tmp (dh.n_dofs()); - for (unsigned int i=0; i dout; - dout.attach_dof_handler (dh); - dout.add_data_vector (tmp, "tmp"); - dout.build_patches(); - std::ofstream file("input_left.gmv"); - dout.write_gmv (file); } void test1() @@ -110,16 +90,16 @@ int main () deallog.depth_console(0); deallog.threshold_double(1.e-10); - test ("grid_in_3d_5.in"); -// test ("grid_in_3d_2.in"); -// test ("grid_in_3d_3.in"); -// test ("grid_in_3d_4.in"); + test ("grid_in_3d_1.in"); + test ("grid_in_3d_2.in"); + test ("grid_in_3d_3.in"); + test ("grid_in_3d_4.in"); -// test ("grid_in_3d_evil_0.in"); -// test ("grid_in_3d_evil_1.in"); -// test ("grid_in_3d_evil_2.in"); -// test ("grid_in_3d_evil_3.in"); -// test ("grid_in_3d_evil_4.in"); + test ("grid_in_3d_evil_0.in"); + test ("grid_in_3d_evil_1.in"); + test ("grid_in_3d_evil_2.in"); + test ("grid_in_3d_evil_3.in"); + test ("grid_in_3d_evil_4.in"); // test1 needs NetCDF // test1 (); -- 2.39.5