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

[staggered] Forward the implicit flag to the multidomain assembler

parent 3dfc9832
No related branches found
No related tags found
1 merge request!2206Feature/staggered assembler fix forwarding implicit flag
......@@ -53,13 +53,13 @@ namespace Dumux {
* \tparam isImplicit if to use an implicit or explicit time discretization
*/
template<class TypeTag, DiffMethod diffMethod, bool isImplicit = true>
class StaggeredFVAssembler: public MultiDomainFVAssembler<StaggeredMultiDomainTraits<TypeTag, TypeTag>,
StaggeredCouplingManager<StaggeredMultiDomainTraits<TypeTag, TypeTag>>,
diffMethod>
class StaggeredFVAssembler : public MultiDomainFVAssembler<StaggeredMultiDomainTraits<TypeTag, TypeTag>,
StaggeredCouplingManager<StaggeredMultiDomainTraits<TypeTag, TypeTag>>,
diffMethod, isImplicit>
{
using ParentType = MultiDomainFVAssembler<StaggeredMultiDomainTraits<TypeTag, TypeTag>,
StaggeredCouplingManager<StaggeredMultiDomainTraits<TypeTag, TypeTag>>,
diffMethod>;
diffMethod, isImplicit>;
using Problem = GetPropType<TypeTag, Properties::Problem>;
using SolutionVector = GetPropType<TypeTag, Properties::SolutionVector>;
......
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