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
Merge requests
!2848
Feature/tags in flux
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/tags in flux
feature/tags-in-flux
into
feature/discretization-tags-introduction
Overview
5
Commits
1
Pipelines
3
Changes
30
All threads resolved!
Hide all comments
Merged
Ivan Buntic
requested to merge
feature/tags-in-flux
into
feature/discretization-tags-introduction
3 years ago
Overview
5
Commits
1
Pipelines
3
Changes
30
All threads resolved!
Hide all comments
Expand
!2844 (merged)
Edited
3 years ago
by
Timo Koch
0
0
Merge request reports
Compare
feature/discretization-tags-introduction
version 2
ed2a4e54
3 years ago
version 1
ac606ebb
3 years ago
feature/discretization-tags-introduction (base)
and
latest version
latest version
0d315fe0
1 commit,
3 years ago
version 2
ed2a4e54
1 commit,
3 years ago
version 1
ac606ebb
2 commits,
3 years ago
30 files
+
115
−
91
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
30
Search (e.g. *.vue) (Ctrl+P)
dumux/flux/box/darcyslaw.hh
+
2
−
2
Options
@@ -37,7 +37,7 @@
namespace
Dumux
{
// forward declaration
template
<
class
TypeTag
,
DiscretizationMethod
discMethod
>
template
<
class
TypeTag
,
class
DiscretizationMethod
>
class
DarcysLawImplementation
;
// forward declaration
@@ -49,7 +49,7 @@ class BoxDarcysLaw;
* \brief Specialization of Darcy's Law for the box method.
*/
template
<
class
TypeTag
>
class
DarcysLawImplementation
<
TypeTag
,
DiscretizationMethod
::
b
ox
>
class
DarcysLawImplementation
<
TypeTag
,
DiscretizationMethod
s
::
B
ox
>
:
public
BoxDarcysLaw
<
GetPropType
<
TypeTag
,
Properties
::
Scalar
>
,
GetPropType
<
TypeTag
,
Properties
::
GridGeometry
>>
{
};
Loading