Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-grid
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
Felix Schindler
dune-grid
Commits
ffd4b96e
Commit
ffd4b96e
authored
8 years ago
by
Tobias Leibner
Committed by
Felix Schindler
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[uggrid] add missing renumbering in UGGridEntity specialization
parent
1442095e
Branches
backports/2.5
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/grid/uggrid/uggridentity.hh
+2
-1
2 additions, 1 deletion
dune/grid/uggrid/uggridentity.hh
with
2 additions
and
1 deletion
dune/grid/uggrid/uggridentity.hh
+
2
−
1
View file @
ffd4b96e
...
...
@@ -12,6 +12,7 @@
#include
<dune/geometry/referenceelements.hh>
#include
<dune/grid/common/gridenums.hh>
#include
<dune/grid/uggrid/uggridrenumberer.hh>
namespace
Dune
{
...
...
@@ -560,7 +561,7 @@ namespace Dune {
std
::
vector
<
FieldVector
<
UGCtype
,
dim
>
>
geometryCoords
(
numCorners
);
for
(
size_t
i
=
0
;
i
<
numCorners
;
i
++
)
for
(
size_t
j
=
0
;
j
<
dim
;
j
++
)
geometryCoords
[
i
][
j
]
=
cornerCoords
[
i
][
j
];
geometryCoords
[
UGGridRenumberer
<
dim
-
1
>::
verticesUGtoDUNE
(
i
,
type
())
][
j
]
=
cornerCoords
[
i
][
j
];
geo_
=
std
::
make_shared
<
GeometryImpl
>
(
type
(),
geometryCoords
);
...
...
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