Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
dune-alugrid
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
2
Issues
2
List
Boards
Labels
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
extensions
dune-alugrid
Commits
7daf2aa8
Commit
7daf2aa8
authored
Oct 25, 2019
by
Robert K
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[cleanup][warnings] remove warnings of unused code pieces.
parent
2a7c7c0e
Pipeline
#21987
failed with stage
in 26 minutes and 56 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
17 deletions
+2
-17
dune/alugrid/impl/serial/gitter_hexa_top.cc
dune/alugrid/impl/serial/gitter_hexa_top.cc
+2
-17
No files found.
dune/alugrid/impl/serial/gitter_hexa_top.cc
View file @
7daf2aa8
...
...
@@ -685,16 +685,12 @@ namespace ALUGrid
// subface routine for regular 2d
template
<
class
A
>
typename
HexaTop
<
A
>::
myhface4_t
*
HexaTop
<
A
>::
subface
(
int
i
,
int
j
)
{
typedef
typename
myhface4_t
::
myrule_t
facerule_t
;
myhface4_t
*
face
=
myhface4
(
i
);
return
face
->
subface
(
j
);
return
myhface4
(
i
)
->
subface
(
j
);
}
//subface routine for regular 2d
template
<
class
A
>
const
typename
HexaTop
<
A
>::
myhface4_t
*
HexaTop
<
A
>::
subface
(
int
i
,
int
j
)
const
{
typedef
typename
myhface4_t
::
myrule_t
facerule_t
;
const
myhface4_t
*
face
=
myhface4
(
i
);
return
face
->
subface
(
j
);
return
myhface4
(
i
)
->
subface
(
j
);
}
template
<
class
A
>
void
HexaTop
<
A
>::
splitISO8
()
...
...
@@ -1189,17 +1185,6 @@ namespace ALUGrid
if
(
hexa
->
myvertex
(
Gitter
::
Geometric
::
Hexa
::
prototype
[
fce
][
i
]
)
!=
hexa
->
myvertex
(
fce
,
i
)
)
{
const
int
vx0
=
Gitter
::
Geometric
::
Hexa
::
prototype
[
fce
][
0
]
;
const
int
vx1
=
Gitter
::
Geometric
::
Hexa
::
prototype
[
fce
][
1
]
;
const
int
vx2
=
Gitter
::
Geometric
::
Hexa
::
prototype
[
fce
][
2
]
;
const
int
vx3
=
Gitter
::
Geometric
::
Hexa
::
prototype
[
fce
][
3
]
;
const
int
vx
[
4
]
=
{
hexa
->
myvertex
(
vx0
)
->
getIndex
(),
hexa
->
myvertex
(
vx1
)
->
getIndex
(),
hexa
->
myvertex
(
vx2
)
->
getIndex
(),
hexa
->
myvertex
(
vx3
)
->
getIndex
()
};
std
::
cout
<<
"Face"
<<
fce
<<
" is wrong"
<<
std
::
endl
;
facesOk
=
false
;
continue
;
...
...
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