From: hartmann Date: Mon, 14 Mar 2005 16:58:04 +0000 (+0000) Subject: vertices_adjacent_to_line function renamed to line_to_cell_vertices. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9642dceba86ed6ca27fcf179e3a8ab15bd2bc357;p=dealii-svn.git vertices_adjacent_to_line function renamed to line_to_cell_vertices. git-svn-id: https://svn.dealii.org/trunk@10129 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/fe/fe_nedelec.cc b/deal.II/deal.II/source/fe/fe_nedelec.cc index 92c7788f45..9f4282282c 100644 --- a/deal.II/deal.II/source/fe/fe_nedelec.cc +++ b/deal.II/deal.II/source/fe/fe_nedelec.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2002, 2003, 2004 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 @@ -780,8 +780,8 @@ void FE_Nedelec::initialize_unit_support_points () for (unsigned int line=0; line::lines_per_cell; ++line) { const unsigned int - vertex_index_0 = GeometryInfo::vertices_adjacent_to_line(line,0), - vertex_index_1 = GeometryInfo::vertices_adjacent_to_line(line,1); + vertex_index_0 = GeometryInfo::line_to_cell_vertices(line,0), + vertex_index_1 = GeometryInfo::line_to_cell_vertices(line,1); const Point vertex_0 = GeometryInfo::unit_cell_vertex(vertex_index_0), @@ -829,8 +829,8 @@ void FE_Nedelec::initialize_unit_face_support_points () for (unsigned int line=0; line::lines_per_cell; ++line) { const unsigned int - vertex_index_0 = GeometryInfo::vertices_adjacent_to_line(line,0), - vertex_index_1 = GeometryInfo::vertices_adjacent_to_line(line,1); + vertex_index_0 = GeometryInfo::line_to_cell_vertices(line,0), + vertex_index_1 = GeometryInfo::line_to_cell_vertices(line,1); const Point vertex_0 = GeometryInfo::unit_cell_vertex(vertex_index_0),