Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-gdt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
ag-ohlberger
dune-community
dune-gdt
Commits
9c8aea18
Commit
9c8aea18
authored
10 years ago
by
Dr. Felix Tobias Schindler
Browse files
Options
Downloads
Patches
Plain Diff
[localfunctions.interface] update CRTP handling
parent
a3f50ffc
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/gdt/localfunctional/interface.hh
+11
-29
11 additions, 29 deletions
dune/gdt/localfunctional/interface.hh
with
11 additions
and
29 deletions
dune/gdt/localfunctional/interface.hh
+
11
−
29
View file @
9c8aea18
...
...
@@ -8,9 +8,10 @@
#include
<vector>
#include
<dune/common/bartonnackmanifcheck.hh>
#include
<dune/common/dynvector.hh>
#include
<dune/stuff/common/crtp.hh>
#include
<dune/gdt/basefunctionset/interface.hh>
namespace
Dune
{
...
...
@@ -19,15 +20,15 @@ namespace LocalFunctional {
template
<
class
Traits
>
class
Codim0Interface
class
Codim0Interface
:
public
Stuff
::
CRTPInterface
<
Codim0Interface
<
Traits
>
,
Traits
>
{
public:
typedef
typename
Traits
::
derived_type
derived_type
;
size_t
numTmpObjectsRequired
()
const
{
CHECK_
INTERFACE_IMPLEMENTATION
(
asI
mp
().
numTmpObjectsRequired
());
return
asI
mp
().
numTmpObjectsRequired
();
CHECK_
CRTP
(
this
->
as_i
mp
().
numTmpObjectsRequired
());
return
this
->
as_i
mp
().
numTmpObjectsRequired
();
}
/**
...
...
@@ -43,30 +44,21 @@ public:
void
apply
(
const
BaseFunctionSetInterface
<
T
,
D
,
d
,
R
,
r
,
rC
>&
testBase
,
Dune
::
DynamicVector
<
R
>&
ret
,
std
::
vector
<
Dune
::
DynamicVector
<
R
>>&
tmpLocalVectors
)
const
{
CHECK_AND_CALL_INTERFACE_IMPLEMENTATION
(
asImp
().
apply
(
testBase
,
ret
,
tmpLocalVectors
));
}
derived_type
&
asImp
()
{
return
static_cast
<
derived_type
&>
(
*
this
);
}
const
derived_type
&
asImp
()
const
{
return
static_cast
<
const
derived_type
&>
(
*
this
);
CHECK_AND_CALL_CRTP
(
this
->
as_imp
().
apply
(
testBase
,
ret
,
tmpLocalVectors
));
}
};
// class Codim0Interface
template
<
class
Traits
>
class
Codim1Interface
class
Codim1Interface
:
public
Stuff
::
CRTPInterface
<
Codim1Interface
<
Traits
>
,
Traits
>
{
public:
typedef
typename
Traits
::
derived_type
derived_type
;
size_t
numTmpObjectsRequired
()
const
{
CHECK_
INTERFACE_IMPLEMENTATION
(
asI
mp
().
numTmpObjectsRequired
());
return
asI
mp
().
numTmpObjectsRequired
();
CHECK_
CRTP
(
this
->
as_i
mp
().
numTmpObjectsRequired
());
return
this
->
as_i
mp
().
numTmpObjectsRequired
();
}
/**
...
...
@@ -83,17 +75,7 @@ public:
void
apply
(
const
BaseFunctionSetInterface
<
T
,
D
,
d
,
R
,
r
,
rC
>&
testBase
,
const
IntersectionType
&
intersection
,
Dune
::
DynamicVector
<
R
>&
ret
,
std
::
vector
<
Dune
::
DynamicVector
<
R
>>&
tmpLocalVectors
)
const
{
CHECK_AND_CALL_INTERFACE_IMPLEMENTATION
(
asImp
().
apply
(
testBase
,
intersection
,
ret
,
tmpLocalVectors
));
}
derived_type
&
asImp
()
{
return
static_cast
<
derived_type
&>
(
*
this
);
}
const
derived_type
&
asImp
()
const
{
return
static_cast
<
const
derived_type
&>
(
*
this
);
CHECK_AND_CALL_CR
(
this
->
as_imp
().
apply
(
testBase
,
intersection
,
ret
,
tmpLocalVectors
));
}
};
// class Codim1Interface
...
...
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