From: wolf Date: Wed, 24 Sep 2003 15:31:46 +0000 (+0000) Subject: Remove more cells. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=16e3e06792dc3494d505dfdb0103f73a5670685d;p=dealii-svn.git Remove more cells. git-svn-id: https://svn.dealii.org/trunk@8023 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/bits/coarsening_3d.cc b/tests/bits/coarsening_3d.cc index cf0e8feba3..b2f6d22904 100644 --- a/tests/bits/coarsening_3d.cc +++ b/tests/bits/coarsening_3d.cc @@ -195,29 +195,6 @@ void create_coarse_grid (Triangulation<3> &coarse_grid) cells.push_back (cell); } } - - - // finally top the building - // with four closing cells and - // the vertex at the top - { - vertices.push_back (Point<3> (0,0,PhantomGeometry::r1)); - - const unsigned int connectivity[4][8] - = { { 59, 60, 61, 67, 51, 52, 53, 50 }, - { 61, 62, 63, 67, 53, 54, 55, 50 }, - { 67, 63, 64, 65, 50, 55, 56, 57 }, - { 59, 67, 65, 66, 51, 50, 57, 58 }}; - - for (unsigned int i=0; i<4; ++i) - { - CellData<3> cell; - for (unsigned int j=0; j<8; ++j) - cell.vertices[j] = connectivity[i][j]; - cell.material_id = 0; - cells.push_back (cell); - } - } }