Line data Source code
1 : // The libMesh Finite Element Library. 2 : // Copyright (C) 2002-2025 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner 3 : 4 : // This library is free software; you can redistribute it and/or 5 : // modify it under the terms of the GNU Lesser General Public 6 : // License as published by the Free Software Foundation; either 7 : // version 2.1 of the License, or (at your option) any later version. 8 : 9 : // This library is distributed in the hope that it will be useful, 10 : // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 : // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 : // Lesser General Public License for more details. 13 : 14 : // You should have received a copy of the GNU Lesser General Public 15 : // License along with this library; if not, write to the Free Software 16 : // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 17 : 18 : 19 : 20 : #include "libmesh/elem_side_builder.h" 21 : 22 : namespace libMesh 23 : { 24 : 25 : Elem & 26 1316417 : ElemSideBuilder::operator()(Elem & elem, const unsigned int s) 27 : { 28 116203 : libmesh_assert_less(s, elem.n_sides()); 29 1316417 : const std::size_t type_index = static_cast<std::size_t>(elem.side_type(s)); 30 1432620 : if (type_index >= _cached_elems.size()) 31 19097 : _cached_elems.resize(type_index + 1); 32 232406 : std::unique_ptr<Elem> & side_elem = _cached_elems[type_index]; 33 1316417 : elem.build_side_ptr(side_elem, s); 34 1316417 : return *side_elem; 35 : } 36 : 37 : const Elem & 38 1006910 : ElemSideBuilder::operator()(const Elem & elem, const unsigned int s) 39 : { 40 1006910 : return (*this)(const_cast<Elem &>(elem), s); 41 : } 42 : 43 : } // namespace libMesh