*/
template <int spacedim>
void
- assign_1d_boundary_indicators (const std::map<unsigned int, types::boundary_id> &boundary_ids,
- Triangulation<1,spacedim> &triangulation)
+ assign_1d_boundary_ids (const std::map<unsigned int, types::boundary_id> &boundary_ids,
+ Triangulation<1,spacedim> &triangulation)
{
if (boundary_ids.size() > 0)
for (typename Triangulation<1,spacedim>::active_cell_iterator
template <int dim, int spacedim>
void
- assign_1d_boundary_indicators (const std::map<unsigned int, types::boundary_id> &,
- Triangulation<dim,spacedim> &)
+ assign_1d_boundary_ids (const std::map<unsigned int, types::boundary_id> &,
+ Triangulation<dim,spacedim> &)
{
// we shouldn't get here since boundary ids are not assigned to
// vertices except in 1d
// in 1d, we also have to attach boundary ids to vertices, which does not
// currently work through the call above
if (dim == 1)
- assign_1d_boundary_indicators (boundary_ids_1d, *tria);
+ assign_1d_boundary_ids (boundary_ids_1d, *tria);
}