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
8b2f6ef1
Commit
8b2f6ef1
authored
7 years ago
by
Kilian Weishaupt
Browse files
Options
Downloads
Patches
Plain Diff
[box][globalVolVars] Make volVars public
parent
8de735be
No related branches found
No related tags found
2 merge requests
!617
[WIP] Next
,
!537
Fix/global volvar cache for box
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/discretization/box/globalvolumevariables.hh
+1
-1
1 addition, 1 deletion
dumux/discretization/box/globalvolumevariables.hh
with
1 addition
and
1 deletion
dumux/discretization/box/globalvolumevariables.hh
+
1
−
1
View file @
8b2f6ef1
...
@@ -96,13 +96,13 @@ public:
...
@@ -96,13 +96,13 @@ public:
friend
inline
ElementVolumeVariables
localView
(
const
BoxGlobalVolumeVariables
&
global
)
friend
inline
ElementVolumeVariables
localView
(
const
BoxGlobalVolumeVariables
&
global
)
{
return
ElementVolumeVariables
(
global
);
}
{
return
ElementVolumeVariables
(
global
);
}
private
:
const
VolumeVariables
&
volVars
(
const
IndexType
eIdx
,
const
IndexType
scvIdx
)
const
const
VolumeVariables
&
volVars
(
const
IndexType
eIdx
,
const
IndexType
scvIdx
)
const
{
return
volumeVariables_
[
eIdx
][
scvIdx
];
}
{
return
volumeVariables_
[
eIdx
][
scvIdx
];
}
VolumeVariables
&
volVars
(
const
IndexType
eIdx
,
const
IndexType
scvIdx
)
VolumeVariables
&
volVars
(
const
IndexType
eIdx
,
const
IndexType
scvIdx
)
{
return
volumeVariables_
[
eIdx
][
scvIdx
];
}
{
return
volumeVariables_
[
eIdx
][
scvIdx
];
}
private
:
const
Problem
&
problem_
()
const
const
Problem
&
problem_
()
const
{
return
*
problemPtr_
;
}
{
return
*
problemPtr_
;
}
...
...
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