Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux
Manage
Activity
Members
Labels
Plan
Issues
77
Issue boards
Milestones
Wiki
Code
Merge requests
77
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
Merge requests
!1373
An error occurred while fetching the assigned milestone of the selected merge_request.
[bugfix][test] Make indices constexpr
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
[bugfix][test] Make indices constexpr
fix/facet-test
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Timo Koch
requested to merge
fix/facet-test
into
master
6 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
fd65bf3b
1 commit,
6 years ago
1 file
+
3
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
test/multidomain/facet/1p_1p/threedomain/main.cc
+
3
−
3
Options
@@ -96,9 +96,9 @@ int main(int argc, char** argv) try
// the multidomain traits and some indices
using
Traits
=
typename
TestTraits
::
MDTraits
;
static
const
auto
bulkId
=
Traits
::
template
SubDomain
<
0
>
::
Index
{};
static
const
auto
facetId
=
Traits
::
template
SubDomain
<
1
>
::
Index
{};
static
const
auto
edgeId
=
Traits
::
template
SubDomain
<
2
>
::
Index
{};
const
expr
auto
bulkId
=
Traits
::
template
SubDomain
<
0
>
::
Index
{};
const
expr
auto
facetId
=
Traits
::
template
SubDomain
<
1
>
::
Index
{};
const
expr
auto
edgeId
=
Traits
::
template
SubDomain
<
2
>
::
Index
{};
// try to create a grid (from the given grid file or the input file)
FacetCouplingGridManager
<
Traits
::
template
SubDomain
<
bulkId
>
::
Grid
,
Loading