From d1ba9c78447beb08e4705ae0909c4dcedaac2844 Mon Sep 17 00:00:00 2001 From: Ralf Hartmann Date: Mon, 14 Mar 2005 16:58:04 +0000 Subject: [PATCH] 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 --- deal.II/deal.II/source/fe/fe_nedelec.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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), -- 2.39.5