Skip to content
Snippets Groups Projects
Commit e1a80ffc authored by Timo Koch's avatar Timo Koch
Browse files

[test] Fix tpfa fv geom test

parent dd04e5f2
No related branches found
No related tags found
2 merge requests!617[WIP] Next,!358[test] Fix tpfa fv geom test
......@@ -32,10 +32,6 @@
#include <dune/grid/common/mcmgmapper.hh>
#include <dumux/implicit/cellcentered/tpfa/properties.hh>
#include <dumux/discretization/cellcentered/tpfa/globalfvgeometry.hh>
#include <dumux/discretization/cellcentered/tpfa/fvelementgeometry.hh>
#include <dumux/discretization/cellcentered/tpfa/subcontrolvolume.hh>
#include <dumux/discretization/cellcentered/tpfa/subcontrolvolumeface.hh>
namespace Dumux
{
......@@ -50,6 +46,13 @@ public:
const ElementMapper& elementMapper() const
{ return mapper_; }
template<class Element, class Intersection>
bool isInteriorBoundary(const Element& e, const Intersection& i) const
{ return false; }
std::vector<unsigned int> getAdditionalDofDependencies(unsigned int index) const
{ return std::vector<unsigned int>(); }
private:
ElementMapper mapper_;
};
......
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