Skip to content
Snippets Groups Projects
Commit 2ca7d74c authored by Tobias Leibner's avatar Tobias Leibner
Browse files

[spaces] fix includes and namespaces, refs #14

parent e5418b5c
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,7 @@ class Default
/**
* \brief Traits class for Spaces::ContinuousLagrange::FemBased.
* \brief Traits class for Spaces::CG::FemBased.
*/
template <class GridViewImp, class RangeFieldImp, int rangeDim, int rangeDimCols>
class DefaultTraits
......
......@@ -13,8 +13,8 @@
#include <dune/stuff/grid/provider/interface.hh>
#include "interface.hh"
#include "continuouslagrange/fem.hh"
#include "continuouslagrange/pdelab.hh"
#include "cg/fem.hh"
#include "cg/pdelab.hh"
namespace Dune {
......@@ -41,13 +41,13 @@ private:
template <class G, int p, class R, int r, int rC>
struct SpaceChooser<G, p, R, r, rC, GDT::ChooseSpaceBackend::fem>
{
typedef GDT::Spaces::ContinuousLagrange::FemBased<GridLayerType, p, R, r> Type;
typedef GDT::Spaces::CG::FemBased<GridLayerType, p, R, r> Type;
};
template <class G, int p, class R, int r, int rC>
struct SpaceChooser<G, p, R, r, rC, GDT::ChooseSpaceBackend::pdelab>
{
typedef GDT::Spaces::ContinuousLagrange::PdelabBased<GridLayerType, p, R, r> Type;
typedef GDT::Spaces::CG::PdelabBased<GridLayerType, p, R, r> Type;
};
typedef Stuff::Grid::ProviderInterface<GridType> GridProviderType;
......
......@@ -17,8 +17,8 @@
#include <dune/stuff/grid/provider/interface.hh>
#include "interface.hh"
#include "../playground/spaces/discontinuouslagrange/fem.hh"
#include "../playground/spaces/discontinuouslagrange/pdelab.hh"
#include "../playground/spaces/dg/fem.hh"
#include "../playground/spaces/dg/pdelab.hh"
namespace Dune {
......@@ -45,13 +45,13 @@ private:
template <class G, int p, class R, int r, int rC>
struct SpaceChooser<G, p, R, r, rC, GDT::ChooseSpaceBackend::fem>
{
typedef GDT::Spaces::DiscontinuousLagrange::FemBased<GridLayerType, p, R, r> Type;
typedef GDT::Spaces::DG::FemBased<GridLayerType, p, R, r> Type;
};
template <class G, int p, class R, int r, int rC>
struct SpaceChooser<G, p, R, r, rC, GDT::ChooseSpaceBackend::pdelab>
{
typedef GDT::Spaces::DiscontinuousLagrange::PdelabBased<GridLayerType, p, R, r> Type;
typedef GDT::Spaces::DG::PdelabBased<GridLayerType, p, R, r> Type;
};
typedef Stuff::Grid::ProviderInterface<GridType> GridProviderType;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment