Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dumux-repositories
dumux
Commits
6b2f0c9a
Commit
6b2f0c9a
authored
6 years ago
by
Dennis Gläser
Browse files
Options
Downloads
Patches
Plain Diff
[md][cclocalassembler] let base class get implicit/explicit template param
parent
10e6b37e
No related branches found
No related tags found
1 merge request
!1288
Feature/md explicit assembler
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/multidomain/subdomaincclocalassembler.hh
+6
-5
6 additions, 5 deletions
dumux/multidomain/subdomaincclocalassembler.hh
with
6 additions
and
5 deletions
dumux/multidomain/subdomaincclocalassembler.hh
+
6
−
5
View file @
6b2f0c9a
...
...
@@ -50,11 +50,12 @@ namespace Dumux {
* \tparam TypeTag the TypeTag
* \tparam Assembler the assembler type
* \tparam Implementation the actual assembler implementation
* \tparam implicit Specifies whether the time discretization is implicit or not not (i.e. explicit)
*/
template
<
std
::
size_t
id
,
class
TypeTag
,
class
Assembler
,
class
Implementation
>
class
SubDomainCCLocalAssemblerBase
:
public
FVLocalAssemblerBase
<
TypeTag
,
Assembler
,
Implementation
,
true
>
template
<
std
::
size_t
id
,
class
TypeTag
,
class
Assembler
,
class
Implementation
,
bool
implicit
>
class
SubDomainCCLocalAssemblerBase
:
public
FVLocalAssemblerBase
<
TypeTag
,
Assembler
,
Implementation
,
implicit
>
{
using
ParentType
=
FVLocalAssemblerBase
<
TypeTag
,
Assembler
,
Implementation
,
true
>
;
using
ParentType
=
FVLocalAssemblerBase
<
TypeTag
,
Assembler
,
Implementation
,
implicit
>
;
using
Problem
=
typename
GET_PROP_TYPE
(
TypeTag
,
Problem
);
using
LocalResidualValues
=
typename
GET_PROP_TYPE
(
TypeTag
,
NumEqVector
);
...
...
@@ -200,9 +201,9 @@ private:
* \tparam Implementation the actual assembler implementation
*/
template
<
std
::
size_t
id
,
class
TypeTag
,
class
Assembler
,
class
Implementation
>
class
SubDomainCCLocalAssemblerImplicitBase
:
public
SubDomainCCLocalAssemblerBase
<
id
,
TypeTag
,
Assembler
,
Implementation
>
class
SubDomainCCLocalAssemblerImplicitBase
:
public
SubDomainCCLocalAssemblerBase
<
id
,
TypeTag
,
Assembler
,
Implementation
,
true
>
{
using
ParentType
=
SubDomainCCLocalAssemblerBase
<
id
,
TypeTag
,
Assembler
,
Implementation
>
;
using
ParentType
=
SubDomainCCLocalAssemblerBase
<
id
,
TypeTag
,
Assembler
,
Implementation
,
true
>
;
using
LocalResidualValues
=
typename
GET_PROP_TYPE
(
TypeTag
,
NumEqVector
);
using
ElementResidualVector
=
typename
ParentType
::
LocalResidual
::
ElementResidualVector
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment