From: wolf Date: Wed, 24 Sep 2003 16:11:56 +0000 (+0000) Subject: Make it simpler. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=300cfcecd303656545ccd851a555b60cd0dedf1b;p=dealii-svn.git Make it simpler. git-svn-id: https://svn.dealii.org/trunk@8030 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/bits/coarsening_3d.cc b/tests/bits/coarsening_3d.cc index 6805e2f3d6..e45a65440d 100644 --- a/tests/bits/coarsening_3d.cc +++ b/tests/bits/coarsening_3d.cc @@ -60,17 +60,10 @@ void create_coarse_grid (Triangulation<3> &coarse_grid) Assert (vertices.size() == n_vertices_per_surface*2, ExcInternalError()); - // next create cells from these - // vertices. only store the - // vertices of the upper surface, - // the lower ones are the same - // +12 const unsigned int connectivity[3][4] = { { 1, 2, 3, 0 }, { 3, 4, 5, 0 }, { 0, 5, 6, 7 } }; - - // now create cells out of this for (unsigned int i=0; i<3; ++i) { CellData<3> cell;