Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
hyteg
hyteg
Commits
b0d135c5
Commit
b0d135c5
authored
Apr 28, 2022
by
Dominik Thoennes
Browse files
prevent usage of copy constructor
parent
bacf4afb
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/hyteg/dgfunctionspace/DGFunction.cpp
View file @
b0d135c5
...
...
@@ -199,7 +199,7 @@ void DGFunction< ValueType >::evaluateOnMicroElement( const Point3D& coo
const
auto
polyDegree
=
polyDegreesPerPrimitive_
.
at
(
faceID
);
const
auto
ndofs
=
uint_c
(
basis_
->
numDoFsPerElement
(
2
,
polyDegree
)
);
Eigen
::
Matrix
<
real_t
,
2
,
1
>
affineCoordinates
(
{
coordinates
[
0
],
coordinates
[
1
]
}
);
Eigen
::
Matrix
<
real_t
,
2
,
1
>
affineCoordinates
(
coordinates
[
0
],
coordinates
[
1
]
);
std
::
array
<
Eigen
::
Matrix
<
real_t
,
2
,
1
>
,
3
>
affineElementVertices
;
auto
vertexIndices
=
facedof
::
macroface
::
getMicroVerticesFromMicroFace
(
elementIndex
,
faceType
);
...
...
@@ -252,7 +252,7 @@ void DGFunction< ValueType >::evaluateOnMicroElement( const Point3D& coo
const
auto
polyDegree
=
polyDegreesPerPrimitive_
.
at
(
cellID
);
const
auto
ndofs
=
uint_c
(
basis_
->
numDoFsPerElement
(
3
,
polyDegree
)
);
Eigen
::
Matrix
<
real_t
,
3
,
1
>
affineCoordinates
(
{
coordinates
[
0
],
coordinates
[
1
],
coordinates
[
2
]
}
);
Eigen
::
Matrix
<
real_t
,
3
,
1
>
affineCoordinates
(
coordinates
[
0
],
coordinates
[
1
],
coordinates
[
2
]
);
std
::
array
<
Eigen
::
Matrix
<
real_t
,
3
,
1
>
,
4
>
affineElementVertices
;
auto
vertexIndices
=
celldof
::
macrocell
::
getMicroVerticesFromMicroCell
(
elementIndex
,
cellType
);
...
...
Write
Preview
Markdown
is supported
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