Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
amdis
amdis-core
Commits
9383e422
Commit
9383e422
authored
Sep 30, 2018
by
Praetorius, Simon
Browse files
recursive lookup problem
parent
0d58e0b6
Changes
2
Hide whitespace changes
Inline
Side-by-side
examples/ellipt.cc
View file @
9383e422
...
...
@@ -6,6 +6,7 @@
#include
<amdis/AMDiS.hpp>
#include
<amdis/ProblemStat.hpp>
#include
<amdis/Operators.hpp>
#include
<amdis/common/FieldMatVec.hpp>
#include
<amdis/common/Literals.hpp>
#include
<amdis/gridfunctions/Integrate.hpp>
...
...
src/amdis/gridfunctions/FunctorGridFunction.hpp
View file @
9383e422
...
...
@@ -182,7 +182,7 @@ namespace AMDiS
{
public:
/// The result type of the functor when applied to the grid-functions
using
Range
=
typename
std
::
result_of
<
Functor
(
typename
GridFunctions
::
Range
...)
>::
type
;
using
Range
=
decltype
(
std
::
declval
<
Functor
>
()(
std
::
declval
<
typename
GridFunctions
::
Range
>
()
...)
)
;
/// The argument type that can be applied to the grid-functions
using
Domain
=
typename
Impl
::
DomainType
<
GridFunctions
...
>::
type
;
/// The set of entities this grid-function binds to
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment