From af6306bb9f0448dbf93bb851b1447cacad723517 Mon Sep 17 00:00:00 2001 From: hartmann Date: Thu, 30 Jun 2005 08:36:17 +0000 Subject: [PATCH] Do not ask for internal data like vertex indices. Build the 0..7 number sequence required for CellData<3>::vertices directly without referring to the vertex indices of an already existing triangulation as the latter is an internal numbering which could be changed later. git-svn-id: https://svn.dealii.org/trunk@10973 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/bits/point_inside_2.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bits/point_inside_2.cc b/tests/bits/point_inside_2.cc index cce82d64ba..45d71e5a61 100644 --- a/tests/bits/point_inside_2.cc +++ b/tests/bits/point_inside_2.cc @@ -49,7 +49,7 @@ void check () std::vector > cells (1, CellData<3>()); // get the indices for (unsigned int j=0; j<8; ++j) { - cells[0].vertices[j] = cell->vertex_index(j); + cells[0].vertices[j] = j; } // get the vertex coordinates -- 2.39.5