Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dune-fem-dg
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
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
dune-fem
dune-fem-dg
Commits
f3be6483
Commit
f3be6483
authored
5 years ago
by
Robert K
Browse files
Options
Downloads
Patches
Plain Diff
[cleanup][shared_ptr] shared_ptr --> std::shared_ptr
parent
3676eb65
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!6
Latest improvements in dune-fem-dg
Pipeline
#24808
failed
5 years ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dune/fem-dg/examples/dataio/checkpointing.hh
+1
-1
1 addition, 1 deletion
dune/fem-dg/examples/dataio/checkpointing.hh
dune/fem-dg/examples/stokes/stokesalgorithm.hh
+2
-2
2 additions, 2 deletions
dune/fem-dg/examples/stokes/stokesalgorithm.hh
with
3 additions
and
3 deletions
dune/fem-dg/examples/dataio/checkpointing.hh
+
1
−
1
View file @
f3be6483
...
...
@@ -73,7 +73,7 @@ namespace Fem
{}
//solution
shared_ptr
<
DiscreteFunction
>
solution
()
const
std
::
shared_ptr
<
DiscreteFunction
>
solution
()
const
{
return
solution_
->
shared
();
}
...
...
This diff is collapsed.
Click to expand it.
dune/fem-dg/examples/stokes/stokesalgorithm.hh
+
2
−
2
View file @
f3be6483
...
...
@@ -220,7 +220,7 @@ namespace Fem
typedef
typename
AssemblerType
::
ContainerType
ContainerType
;
template
<
class
ContainerImp
>
StokesSigmaEstimator
(
const
shared_ptr
<
ContainerImp
>&
cont
,
StokesSigmaEstimator
(
const
std
::
shared_ptr
<
ContainerImp
>&
cont
,
const
BaseAssemblerType
&
ass
,
const
AssemblerType
&
assembler
,
const
std
::
string
keyPrefix
=
""
)
...
...
@@ -278,7 +278,7 @@ namespace Fem
typedef
typename
PAdaptivityType
::
PolOrderContainer
PolOrderContainer
;
template
<
class
ContainerImp
>
StokesPAdaptivity
(
const
shared_ptr
<
ContainerImp
>&
cont
,
BaseAssemblerType
&
ass
,
AssemblerType
&
assembler
,
const
std
::
string
name
=
""
)
StokesPAdaptivity
(
const
std
::
shared_ptr
<
ContainerImp
>&
cont
,
BaseAssemblerType
&
ass
,
AssemblerType
&
assembler
,
const
std
::
string
name
=
""
)
:
pAdapt_
(
(
*
cont
)(
std
::
make_tuple
(
_0
),
std
::
make_tuple
(
_0
)
),
ass
,
name
),
polOrderContainer_
(
(
*
cont
)(
_0
)
->
solution
()
->
gridPart
().
grid
(),
0
),
space_
(
(
*
cont
)(
_1
)
->
solution
()
->
space
()
),
...
...
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