Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-matrix-vector
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
agnumpde
dune-matrix-vector
Merge requests
!4
Use explicitly `Dune::Hybrid::size`
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Use explicitly `Dune::Hybrid::size`
burchardt_at_igpm.rwth-aachen.de/dune-matrix-vector:bugfix/resolve-ambiguous-size-call
into
master
Overview
1
Commits
1
Pipelines
1
Changes
2
Merged
Use explicitly `Dune::Hybrid::size`
Ansgar Burchardt
requested to merge
burchardt_at_igpm.rwth-aachen.de/dune-matrix-vector:bugfix/resolve-ambiguous-size-call
into
master
Jul 21, 2017
Overview
1
Commits
1
Pipelines
1
Changes
2
Reference:
https://gitlab.dune-project.org/core/dune-common/issues/77
1
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
263c8d05
1 commit,
Jul 21, 2017
2 files
+
3
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
dune/matrix-vector/test/arithmetictest.cc
+
2
−
2
View file @ 263c8d05
Edit in single-file editor
Open in Web IDE
Show full file
@@ -663,8 +663,8 @@ public:
multiTypeBlockMatrix_check
[
_1
][
_0
]
=
{{
16
},
{
15
}};
multiTypeBlockMatrix_check
[
_1
][
_1
]
=
{{
14
,
13
},
{
12
,
11
}};
using
namespace
Dune
::
Hybrid
;
forEach
(
integralRange
(
size
(
multiTypeBlockMatrix_a
)),
[
&
](
auto
&&
i
)
{
forEach
(
integralRange
(
size
(
multiTypeBlockMatrix_a
[
i
])),
[
&
](
auto
&&
j
)
{
forEach
(
integralRange
(
Dune
::
Hybrid
::
size
(
multiTypeBlockMatrix_a
)),
[
&
](
auto
&&
i
)
{
forEach
(
integralRange
(
Dune
::
Hybrid
::
size
(
multiTypeBlockMatrix_a
[
i
])),
[
&
](
auto
&&
j
)
{
passed
=
passed
and
isCloseDune
(
multiTypeBlockMatrix_a
[
i
][
j
],
multiTypeBlockMatrix_check
[
i
][
j
]);
});
Loading