Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
iwr
dune-vtk
Commits
3ff7844d
Commit
3ff7844d
authored
Feb 17, 2021
by
Praetorius, Simon
Browse files
Fix integer comparison and missing install file warnings
parent
695dd2a9
Changes
3
Hide whitespace changes
Inline
Side-by-side
dune/vtk/datacollectors/CMakeLists.txt
View file @
3ff7844d
...
...
@@ -2,6 +2,7 @@
install
(
FILES
continuousdatacollector.hh
discontinuousdatacollector.hh
lagrangedatacollector.hh
quadraticdatacollector.hh
spdatacollector.hh
structureddatacollector.hh
...
...
dune/vtk/utility/lagrangepoints.hh
View file @
3ff7844d
...
...
@@ -180,7 +180,7 @@ namespace Dune
// "Barycentric index" is a set of 4 integers, each running from 0 to
// <Order>. It is the index of a point in the tetrahedron in barycentric
// coordinates.
static
void
barycentricIndex
(
std
::
size_
t
p
,
std
::
array
<
int
,
4
>&
bindex
,
int
order
);
static
void
barycentricIndex
(
in
t
p
,
std
::
array
<
int
,
4
>&
bindex
,
int
order
);
// Construct the point set in the heyhedral element
// 1. build equispaced points with index tuple (i,j,k)
...
...
dune/vtk/utility/lagrangepoints.impl.hh
View file @
3ff7844d
...
...
@@ -330,7 +330,7 @@ void LagrangePointSetBuilder<K,3>::buildTetra (std::size_t nPoints, int order, P
// <Order>. It is the index of a point in the tetrahedron in barycentric
// coordinates.
template
<
class
K
>
void
LagrangePointSetBuilder
<
K
,
3
>::
barycentricIndex
(
std
::
size_
t
p
,
std
::
array
<
int
,
4
>&
bindex
,
int
order
)
void
LagrangePointSetBuilder
<
K
,
3
>::
barycentricIndex
(
in
t
p
,
std
::
array
<
int
,
4
>&
bindex
,
int
order
)
{
const
int
nVertexDOFs
=
4
;
const
int
nEdgeDOFs
=
6
*
(
order
-
1
);
...
...
Write
Preview
Supports
Markdown
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