From b44685d6f958ba91537ab9c83cbab9a7e1b1b297 Mon Sep 17 00:00:00 2001 From: guido Date: Thu, 8 Jun 2006 07:35:45 +0000 Subject: [PATCH] add test for face_to_equivalent_cell_index git-svn-id: https://svn.dealii.org/trunk@13199 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/fe/fe_data_test.cc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/fe/fe_data_test.cc b/tests/fe/fe_data_test.cc index 68111d9ae8..bf2f4845f1 100644 --- a/tests/fe/fe_data_test.cc +++ b/tests/fe/fe_data_test.cc @@ -2,7 +2,7 @@ // fe_data_test.cc,v 1.14 2003/11/28 11:52:35 guido Exp // Version: // -// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2005 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2006 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -153,6 +153,11 @@ void test_fe_datas() deallog << "generalized_face_support_points=" << fe_data->get_generalized_face_support_points().size() << std::endl; + dealog << "face_to_equivalent_cell_index:"; + for (unsigned int i=0;idofs_per_face;++i) + deallog << ' ' << fe_data->face_to_equivalent_cell_index(i); + deallog << std::endl; + for (unsigned int f=0;f::faces_per_cell;++f) { deallog << "support on face " << f << ':'; -- 2.39.5