Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-istl
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
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Core Modules
dune-istl
Merge requests
!58
Add (static) size() method to MultiTypeBlockMatrix
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add (static) size() method to MultiTypeBlockMatrix
feature/multitypeblockmatrix-size
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Carsten Gräser
requested to merge
feature/multitypeblockmatrix-size
into
master
8 years ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
Since the istl view is, that a matrix is a container of rows, it should have a size method.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
39983768
1 commit,
8 years ago
1 file
+
6
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
dune/istl/multitypeblockmatrix.hh
+
6
−
0
Options
@@ -57,6 +57,12 @@ namespace Dune {
return
1
+
sizeof
...(
Args
);
}
/** \brief Return the number of matrix rows */
static
constexpr
std
::
size_t
size
()
{
return
1
+
sizeof
...(
Args
);
}
/** \brief Return the number of matrix columns */
static
constexpr
std
::
size_t
M
()
{
Loading