Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dumux-repositories
dumux
Commits
1146bb70
Commit
1146bb70
authored
Jul 15, 2019
by
Beatrix Becker
Browse files
[2p2c sequential] add problem constructor that can be called with gridView
parent
06897d0e
Changes
1
Hide whitespace changes
Inline
Side-by-side
dumux/porousmediumflow/2p2c/sequential/problem.hh
View file @
1146bb70
...
...
@@ -72,8 +72,12 @@ public:
* \param timeManager The time manager
* \param grid The grid
*/
IMPETProblem2P2C
(
TimeManager
&
timeManager
,
Grid
&
grid
)
:
ParentType
(
timeManager
,
grid
)
IMPETProblem2P2C
(
TimeManager
&
timeManager
,
Grid
&
grid
)
:
IMPETProblem2P2C
(
timeManager
,
grid
,
grid
.
leafGridView
())
{}
IMPETProblem2P2C
(
TimeManager
&
timeManager
,
Grid
&
grid
,
const
GridView
&
gridView
)
:
ParentType
(
timeManager
,
grid
,
gridView
)
{
}
/*!
* \brief The constructor for given spatialParams
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment