Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pugs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
code
pugs
Merge requests
!10
Feature/data output
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Feature/data output
feature/data-output
into
develop
Overview
0
Commits
4
Pipelines
0
Changes
1
Merged
Feature/data output
Stéphane Del Pino
requested to merge
feature/data-output
into
develop
Jan 5, 2019
Overview
0
Commits
4
Pipelines
0
Changes
1
Improve VTKWriter
0
0
Merge request reports
Viewing commit
7b722d17
Prev
Next
Show latest version
1 file
+
10
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
7b722d17
Add direct access to underlying entries
· 7b722d17
Stéphane Del Pino
authored
Jan 5, 2019
src/mesh/ItemToItemMatrix.hpp
+
10
−
0
View file @ 7b722d17
Edit in single-file editor
Open in Web IDE
Show full file
@@ -62,6 +62,16 @@ class ItemToItemMatrix
const
ConnectivityMatrix
&
m_connectivity_matrix
;
public
:
auto
numberOfEntries
()
const
{
return
m_connectivity_matrix
.
numEntries
();
}
const
auto
&
entries
()
const
{
return
m_connectivity_matrix
.
entries
();
}
PASTIS_INLINE
auto
operator
[](
const
SourceItemId
&
source_id
)
const
{
Loading