Skip to content
Snippets Groups Projects
Commit f4a882f4 authored by Dennis Gläser's avatar Dennis Gläser Committed by Timo Koch
Browse files

[facet][cc][localres] do not bring in parent overloads

parent bd6fb320
No related branches found
No related tags found
1 merge request!3774Fix/facet coupling on boundary
......@@ -15,6 +15,8 @@
#ifndef DUMUX_FACETCOUPLING_CC_LOCAL_RESIDUAL_HH
#define DUMUX_FACETCOUPLING_CC_LOCAL_RESIDUAL_HH
#include <utility>
#include <dumux/common/properties.hh>
#include <dumux/common/numeqvector.hh>
#include <dumux/assembly/cclocalresidual.hh>
......@@ -50,8 +52,12 @@ public:
//! export the type used for element residuals
using ElementResidualVector = typename ParentType::ElementResidualVector;
//! evaluate the flux residual for a sub control volume face and add to residual
template<class... Args>
void evalFlux(ElementResidualVector& residual, Args&&... args) const
{ ParentType::evalFlux(residual, std::forward<Args>(args)...); }
//! evaluate the flux residual for a sub control volume face
using ParentType::evalFlux;
template< class Problem >
NumEqVector evalFlux(const Problem& problem,
const Element& element,
......
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