Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-fufem
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
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
fufem
dune-fufem
Commits
81807db7
Commit
81807db7
authored
2 years ago
by
Carsten Gräser
Browse files
Options
Downloads
Patches
Plain Diff
[cleanup]Replace Dune::Std::bool_constant by std::bool_constant
parent
0e9baff3
No related branches found
Branches containing commit
No related tags found
1 merge request
!143
[cleanup]Avoid deprecated interfaces from the core modules
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/fufem/makesphere.hh
+3
-2
3 additions, 2 deletions
dune/fufem/makesphere.hh
with
3 additions
and
2 deletions
dune/fufem/makesphere.hh
+
3
−
2
View file @
81807db7
...
...
@@ -5,6 +5,7 @@
#include
<cmath>
#include
<memory>
#include
<type_traits>
#include
<dune/common/hybridutilities.hh>
...
...
@@ -184,7 +185,7 @@ std::unique_ptr<GridType> makeSphereOnOctahedron(const Dune::FieldVector<field_t
for
(
int
i
=
0
;
i
<
8
;
i
++
)
{
// If the grid is sd the element boundaries carry a parametrization
Dune
::
Hybrid
::
ifElse
(
Dune
::
S
td
::
bool_constant
<
GridType
::
dimension
==
3
>
{},
Dune
::
Hybrid
::
ifElse
(
s
td
::
bool_constant
<
GridType
::
dimension
==
3
>
{},
[
&
](
auto
id
)
{
auto
boundarySegment
=
std
::
make_shared
<
SphereTriSegment
>
(
pos
[
segments
[
i
][
0
]],
...
...
@@ -202,7 +203,7 @@ std::unique_ptr<GridType> makeSphereOnOctahedron(const Dune::FieldVector<field_t
else
cornerIDs
=
{
segments
[
i
][
0
],
segments
[
i
][
1
],
segments
[
i
][
2
],
6
};
Dune
::
Hybrid
::
ifElse
(
Dune
::
S
td
::
bool_constant
<
GridType
::
dimension
==
2
>
{},
Dune
::
Hybrid
::
ifElse
(
s
td
::
bool_constant
<
GridType
::
dimension
==
2
>
{},
[
&
](
auto
id
)
{
// Insert parametrized element
...
...
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