Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-gfe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
Praetorius, Simon
dune-gfe
Commits
a5db27c6
Commit
a5db27c6
authored
8 months ago
by
Sander, Oliver
Browse files
Options
Downloads
Patches
Plain Diff
Remove a few unused static data members
parent
bd1d6bee
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/gfe/localprojectedfefunction.hh
+2
-10
2 additions, 10 deletions
dune/gfe/localprojectedfefunction.hh
with
2 additions
and
10 deletions
dune/gfe/localprojectedfefunction.hh
+
2
−
10
View file @
a5db27c6
...
...
@@ -36,10 +36,6 @@ namespace Dune {
typedef
typename
TargetSpace
::
EmbeddedTangentVector
EmbeddedTangentVector
;
static
const
int
embeddedDim
=
EmbeddedTangentVector
::
dimension
;
static
const
int
spaceDim
=
TargetSpace
::
TangentVector
::
dimension
;
constexpr
static
bool
conformingFlag
=
conforming
;
public:
/** \brief The type used for derivatives */
...
...
@@ -118,7 +114,7 @@ namespace Dune {
for
(
size_t
i
=
0
;
i
<
coefficients_
.
size
();
i
++
)
c
.
axpy
(
w
[
i
][
0
],
coefficients_
[
i
].
globalCoordinates
());
if
constexpr
(
conforming
Flag
)
if
constexpr
(
conforming
)
return
TargetSpace
::
projectOnto
(
c
);
else
return
(
RealTuple
<
RT
,
TargetSpace
::
CoordinateType
::
dimension
>
)
c
;
...
...
@@ -130,7 +126,7 @@ namespace Dune {
LocalProjectedFEFunction
<
dim
,
ctype
,
LocalFiniteElement
,
TargetSpace
,
conforming
>::
evaluateDerivative
(
const
Dune
::
FieldVector
<
ctype
,
dim
>&
local
)
const
{
if
constexpr
(
conforming
Flag
)
if
constexpr
(
conforming
)
{
// the function value at the point where we are evaluating the derivative
TargetSpace
q
=
evaluate
(
local
);
...
...
@@ -196,8 +192,6 @@ namespace Dune {
typedef
typename
TargetSpace
::
EmbeddedTangentVector
EmbeddedTangentVector
;
static
const
int
embeddedDim
=
EmbeddedTangentVector
::
dimension
;
static
const
int
spaceDim
=
TargetSpace
::
TangentVector
::
dimension
;
/**
* \param A The argument of the projection
* \param polar The image of the projection, i.e., the polar factor of A
...
...
@@ -418,8 +412,6 @@ namespace Dune {
typedef
typename
TargetSpace
::
EmbeddedTangentVector
EmbeddedTangentVector
;
static
const
int
embeddedDim
=
EmbeddedTangentVector
::
dimension
;
static
const
int
spaceDim
=
TargetSpace
::
TangentVector
::
dimension
;
public:
/** \brief The type used for derivatives */
...
...
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