void
GeometryInfo<dim>::
alternating_form_at_vertices
-#ifndef DEAL_II_ARRAY_ARG_BUG
(const Point<spacedim> (&vertices)[vertices_per_cell],
Tensor<spacedim-dim,spacedim> (&forms)[vertices_per_cell])
-#else
- (const Point<spacedim> *vertices,
- Tensor<spacedim-dim,spacedim> *forms)
-#endif
{
// for each of the vertices,
// compute the alternating form
void
GeometryInfo<1>::
alternating_form_at_vertices
-#ifndef DEAL_II_ARRAY_ARG_BUG
(const Point<1> (&vertices)[vertices_per_cell],
Tensor<1-1,1> (&forms)[vertices_per_cell])
-#else
- (const Point<1> *vertices,
- Tensor<1-1,1> *forms)
-#endif
;
template
void
GeometryInfo<1>::
alternating_form_at_vertices
-#ifndef DEAL_II_ARRAY_ARG_BUG
(const Point<2> (&vertices)[vertices_per_cell],
Tensor<2-1,2> (&forms)[vertices_per_cell])
-#else
- (const Point<2> *vertices,
- Tensor<2-1,2> *forms)
-#endif
;
template
void
GeometryInfo<2>::
alternating_form_at_vertices
-#ifndef DEAL_II_ARRAY_ARG_BUG
(const Point<2> (&vertices)[vertices_per_cell],
Tensor<2-2,2> (&forms)[vertices_per_cell])
-#else
- (const Point<2> *vertices,
- Tensor<2-2,2> *forms)
-#endif
;
template
void
GeometryInfo<2>::
alternating_form_at_vertices
-#ifndef DEAL_II_ARRAY_ARG_BUG
(const Point<3> (&vertices)[vertices_per_cell],
Tensor<3-2,3> (&forms)[vertices_per_cell])
-#else
-(const Point<3> *vertices,
- Tensor<3-2,3> *forms)
-#endif
;
void
GeometryInfo<3>::
alternating_form_at_vertices
-#ifndef DEAL_II_ARRAY_ARG_BUG
(const Point<3> (&vertices)[vertices_per_cell],
Tensor<3-3,3> (&forms)[vertices_per_cell])
-#else
-(const Point<3> *vertices,
- Tensor<3-3,3> *forms)
-#endif
;