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

[spaces.dg] add gdt backend to provider

parent dc6ae4c1
No related branches found
No related tags found
No related merge requests found
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
#include <dune/xt/grid/gridprovider/provider.hh> #include <dune/xt/grid/gridprovider/provider.hh>
#include "interface.hh" #include "interface.hh"
#include "dg/default.hh"
#include "dg/dune-fem-wrapper.hh" #include "dg/dune-fem-wrapper.hh"
#include "../playground/spaces/dg/dune-pdelab-wrapper.hh" #include "../playground/spaces/dg/dune-pdelab-wrapper.hh"
#include "../playground/spaces/dg/dune-functions-wrapper.hh" #include "../playground/spaces/dg/dune-functions-wrapper.hh"
...@@ -61,6 +62,14 @@ private: ...@@ -61,6 +62,14 @@ private:
typedef GDT::DuneFemDgSpaceWrapper<GridLayerType, p, R, r, rC> Type; typedef GDT::DuneFemDgSpaceWrapper<GridLayerType, p, R, r, rC> Type;
}; };
template <class G, int p, class R, size_t r, size_t rC>
struct SpaceChooser<G, p, R, r, rC, GDT::Backends::gdt>
{
static_assert(rC == 1, "");
static_assert(r == 1, "");
typedef GDT::DiscontinuousLagrangeSpace<GridLayerType, p, R> Type;
};
template <class G, int p, class R, size_t r, size_t rC> template <class G, int p, class R, size_t r, size_t rC>
struct SpaceChooser<G, p, R, r, rC, GDT::Backends::functions> struct SpaceChooser<G, p, R, r, rC, GDT::Backends::functions>
{ {
......
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