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
10ce6617
Commit
10ce6617
authored
Dec 21, 2017
by
Timo Koch
Browse files
[assembly] Fix missing includes
parent
65fd5620
Changes
4
Hide whitespace changes
Inline
Side-by-side
dumux/assembly/boxlocalassembler.hh
View file @
10ce6617
...
...
@@ -29,6 +29,7 @@
#include <dune/istl/bvector.hh>
#include <dumux/common/properties.hh>
#include <dumux/common/parameters.hh>
#include <dumux/assembly/diffmethod.hh>
namespace
Dumux
{
...
...
dumux/assembly/cclocalassembler.hh
View file @
10ce6617
...
...
@@ -33,6 +33,7 @@
#include <dune/istl/bvector.hh>
#include <dumux/common/properties.hh>
#include <dumux/common/parameters.hh>
#include <dumux/assembly/diffmethod.hh>
namespace
Dumux
{
...
...
dumux/assembly/staggeredlocalassembler.hh
View file @
10ce6617
...
...
@@ -37,6 +37,7 @@
#if DUNE_VERSION_NEWER(DUNE_COMMON,2,6)
#include <dune/common/hybridutilities.hh>
#include <dune/common/rangeutilities.hh>
#else
#include <dumux/common/intrange.hh>
#endif
...
...
@@ -607,7 +608,6 @@ protected:
assert
(
eqIdx
<
matrix
[
globalI
][
globalJ
].
size
());
assert
(
pvIdx
<
matrix
[
globalI
][
globalJ
][
eqIdx
].
size
());
matrix
[
globalI
][
globalJ
][
eqIdx
][
pvIdx
]
+=
partialDeriv
[
eqIdx
];
Valgrind
::
CheckDefined
(
matrix
[
globalI
][
globalJ
][
eqIdx
][
pvIdx
]);
}
}
...
...
@@ -617,11 +617,11 @@ protected:
{
constexpr
auto
numEqCellCenter
=
GET_PROP_VALUE
(
TypeTag
,
NumEqCellCenter
);
#if DUNE_VERSION_NEWER(DUNE_COMMON,2,6)
#if DUNE_VERSION_NEWER(DUNE_COMMON,2,6)
return
Dune
::
range
(
0
,
numEqCellCenter
);
#else
#else
return
IntRange
(
0
,
numEqCellCenter
);
#endif
#endif
}
//! Helper function that returns an iterable range of primary variable indices.
...
...
dumux/assembly/staggeredlocalresidual.hh
View file @
10ce6617
...
...
@@ -25,15 +25,11 @@
#ifndef DUMUX_STAGGERED_LOCAL_RESIDUAL_HH
#define DUMUX_STAGGERED_LOCAL_RESIDUAL_HH
#include <dumux/common/valgrind.hh>
#include <dumux/common/timeloop.hh>
#include <dumux/common/properties.hh>
namespace
Dumux
{
namespace
Properties
{
NEW_PROP_TAG
(
ElementFaceVariables
);
}
/*!
* \ingroup StaggeredDiscretization
* \ingroup Assembly
...
...
Write
Preview
Markdown
is supported
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