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

[spaces.interface] add default_space_backend

parent 90a57837
No related branches found
No related tags found
No related merge requests found
......@@ -39,6 +39,16 @@ enum class ChooseSpaceBackend
}; // enum class ChooseSpaceBackend
static constexpr ChooseSpaceBackend default_space_backend =
#if HAVE_DUNE_FEM
ChooseSpaceBackend::fem;
#elif HAVE_DUNE_PDELAB
ChooseSpaceBackend::pdelab;
#else
ChooseSpaceBackend::gdt;
#endif
template <ChooseSpaceBackend type>
struct ChooseGridPartView;
......
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