Skip to content
Snippets Groups Projects
Commit 774482cb authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[spaces.l2] add make_discontinuous_lagrange_space

parent 759fac95
No related branches found
No related tags found
No related merge requests found
......@@ -159,6 +159,16 @@ private:
}; // class DiscontinuousLagrangeSpace
/**
* \sa DiscontinuousLagrangeSpace
*/
template <int p, class GV, class R = double>
DiscontinuousLagrangeSpace<GridView<GV>, p, 1, R> make_discontinuous_lagrange_space(GridView<GV> grid_view)
{
return DiscontinuousLagrangeSpace<GridView<GV>, p, 1, R>(grid_view);
}
} // namespace GDT
} // namespace Dune
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment