From 0dca62164909a670bf573da714a53c566fabba84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dennis=20Gl=C3=A4ser?= <dennis.glaeser@iws.uni-stuttgart.de> Date: Wed, 14 Nov 2018 16:05:06 +0100 Subject: [PATCH] [md][boxlocalassembler] get rid of obsolete assembleResidualImpl function --- dumux/multidomain/subdomainboxlocalassembler.hh | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/dumux/multidomain/subdomainboxlocalassembler.hh b/dumux/multidomain/subdomainboxlocalassembler.hh index fcb9b9da96..5d3f1bd687 100644 --- a/dumux/multidomain/subdomainboxlocalassembler.hh +++ b/dumux/multidomain/subdomainboxlocalassembler.hh @@ -177,7 +177,7 @@ public: this->asImp_().bindLocalViews(); this->elemBcTypes().update(problem(), this->element(), this->fvGeometry()); - const auto residual = this->asImp_().assembleResidualImpl(); + const auto residual = this->evalLocalResidual(); for (const auto& scv : scvs(this->fvGeometry())) res[scv.dofIndex()] += residual[scv.localDofIndex()]; } @@ -281,13 +281,6 @@ public: } } - /*! - * \brief Computes the residual - * \return The element residual at the current solution. - */ - ElementResidualVector assembleResidualImpl() - { return this->evalLocalResidual(); } - //! return reference to the underlying problem const Problem& problem() const { return this->assembler().problem(domainId); } -- GitLab