Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dune-fem-dg
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
Service Desk
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
dune-fem
dune-fem-dg
Commits
3acfefc0
Commit
3acfefc0
authored
8 years ago
by
Stefan Girke
Browse files
Options
Downloads
Patches
Plain Diff
simplified and generalised evaluate method of QuadraturePointContext
parent
c4d8a8bd
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dune/fem-dg/examples/advdiff/models.hh
+2
-4
2 additions, 4 deletions
dune/fem-dg/examples/advdiff/models.hh
dune/fem-dg/pass/context.hh
+23
-20
23 additions, 20 deletions
dune/fem-dg/pass/context.hh
with
25 additions
and
24 deletions
dune/fem-dg/examples/advdiff/models.hh
+
2
−
4
View file @
3acfefc0
...
...
@@ -153,11 +153,9 @@ namespace Fem
}
private
:
template
<
int
id
>
struct
GetVelocity
{
typedef
std
::
integral_constant
<
int
,
id
>
VarId
;
typedef
DomainType
ReturnType
;
typedef
velocityVar
VarId
;
template
<
class
LocalEvaluation
>
DomainType
operator
()
(
const
LocalEvaluation
&
local
,
const
ProblemType
&
problem
)
const
...
...
@@ -197,7 +195,7 @@ namespace Fem
template
<
class
LocalEvaluation
>
inline
DomainType
velocity
(
const
LocalEvaluation
&
local
)
const
{
return
local
.
evaluate
(
GetVelocity
<
velo
>
(),
local
,
problem_
);
return
local
.
evaluate
(
GetVelocity
(),
local
,
problem_
);
}
...
...
This diff is collapsed.
Click to expand it.
dune/fem-dg/pass/context.hh
+
23
−
20
View file @
3acfefc0
...
...
@@ -55,43 +55,48 @@ namespace Fem
static
const
bool
value
=
false
;
};
//pass version
template
<
class
Tuple
,
class
Types
,
class
VarId
>
struct
Contains
<
TypeIndexedTuple
<
Tuple
,
Types
>
,
VarId
>
{
static
const
bool
value
=
TypeIndexedTuple
<
Tuple
,
Types
>::
template
Contains
<
VarId
>
::
value
;
};
//general version, without passes, just a simple std::tuple of arguments
template
<
class
...
Args
,
class
VarId
>
struct
Contains
<
std
::
tuple
<
Args
...
>
,
VarId
>
{
static
const
bool
value
=
(
VarId
::
value
>=
0
&&
std
::
tuple_size
<
std
::
tuple
<
Args
...
>
>::
value
<
VarId
::
value
);
};
template
<
class
Functor
,
bool
containedInTuple
>
struct
Evaluate
;
template
<
class
Functor
>
struct
Evaluate
<
Functor
,
tru
e
>
struct
Evaluate
<
Functor
,
fals
e
>
{
typedef
typename
Functor
::
VarId
VarId
;
typedef
typename
RangeTuple
::
template
Value
<
VarId
>
::
Type
ReturnType
;
template
<
class
...
Args
>
//static decltype(auto)
static
const
ReturnType
&
eval
(
const
RangeTuple
&
tuple
,
const
Functor
&
functor
,
const
Args
&
...
args
)
static
decltype
(
auto
)
eval
(
const
RangeTuple
&
tuple
,
const
Functor
&
functor
,
const
Args
&
...
args
)
{
return
tuple
.
template
at
<
VarId
>
(
);
return
functor
(
args
...
);
}
};
template
<
class
Functor
>
struct
Evaluate
<
Functor
,
fals
e
>
struct
Evaluate
<
Functor
,
tru
e
>
{
typedef
typename
Functor
::
ReturnType
ReturnType
;
//pass version
template
<
class
Tuple
,
class
Types
,
class
...
Args
>
static
decltype
(
auto
)
eval
(
const
TypeIndexedTuple
<
Tuple
,
Types
>&
tuple
,
const
Functor
&
functor
,
const
Args
&
...
args
)
{
return
tuple
.
template
at
<
typename
Functor
::
VarId
>();
}
template
<
class
...
Args
>
//static decltype(auto)
static
ReturnType
eval
(
const
RangeTuple
&
tuple
,
const
Functor
&
functor
,
const
Args
&
...
args
)
//no passes: assume a simple std::tuple of elements
template
<
class
...
ExtraArgs
,
class
...
Args
>
static
decltype
(
auto
)
eval
(
const
std
::
tuple
<
ExtraArgs
...
>&
tuple
,
const
Functor
&
functor
,
const
Args
&
...
args
)
{
return
functor
(
args
...
);
return
std
::
get
<
typename
Functor
::
VarId
::
value
>
(
tuple
);
}
};
...
...
@@ -206,7 +211,6 @@ namespace Fem
* struct ConstantData
* {
* typedef varId VarId;
* typedef double ReturnType;
*
* const RangeType& operator() () const
* {
...
...
@@ -227,8 +231,7 @@ namespace Fem
* \param args arguments which should be applied to the functor
*/
template
<
class
Functor
,
class
...
Args
>
typename
Evaluate
<
Functor
,
Contains
<
RangeTuple
,
typename
Functor
::
VarId
>::
value
>::
ReturnType
evaluate
(
const
Functor
&
functor
,
const
Args
&
...
args
)
const
decltype
(
auto
)
evaluate
(
const
Functor
&
functor
,
const
Args
&
...
args
)
const
{
return
Evaluate
<
Functor
,
Contains
<
RangeTuple
,
typename
Functor
::
VarId
>::
value
>::
eval
(
values
(),
functor
,
args
...
);
}
...
...
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