Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-istl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
Patrick Jaap
dune-istl
Commits
13c36c3d
Commit
13c36c3d
authored
8 years ago
by
Christian Engwer
Browse files
Options
Downloads
Patches
Plain Diff
[factory] update new constructors to take objects only as shared_ptr
parent
2d108d35
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dune/istl/solver.hh
+6
-6
6 additions, 6 deletions
dune/istl/solver.hh
dune/istl/solvers.hh
+6
-6
6 additions, 6 deletions
dune/istl/solvers.hh
with
12 additions
and
12 deletions
dune/istl/solver.hh
+
6
−
6
View file @
13c36c3d
...
...
@@ -267,14 +267,14 @@ namespace Dune
DUNE_THROW
(
InvalidSolverCategory
,
"LinearOperator and ScalarProduct must have the same SolverCategory!"
);
}
IterativeSolver
(
LinearOperator
<
X
,
Y
>
&
op
,
std
::
shared_ptr
<
Preconditioner
<
X
,
X
>
>
prec
,
const
ParameterTree
&
configuration
)
:
_op
(
stackobject_to_shared_ptr
(
op
)
)
,
_prec
(
stackobject_to_shared_ptr
(
prec
)
)
,
IterativeSolver
(
std
::
shared_ptr
<
LinearOperator
<
X
,
Y
>
>
op
,
std
::
shared_ptr
<
Preconditioner
<
X
,
X
>
>
prec
,
const
ParameterTree
&
configuration
)
:
_op
(
op
),
_prec
(
prec
),
_sp
(
new
SeqScalarProduct
<
X
>
),
_reduction
(
configuration
.
get
<
real_type
>
(
"reduction"
)),
_maxit
(
configuration
.
get
<
int
>
(
"maxit"
)),
_verbose
(
configuration
.
get
<
int
>
(
"verbose"
)),
_category
(
SolverCategory
::
category
(
*
_
op
))
_category
(
SolverCategory
::
category
(
*
op
))
{
if
(
SolverCategory
::
category
(
*
op
)
!=
SolverCategory
::
sequential
)
DUNE_THROW
(
InvalidSolverCategory
,
"LinearOperator has to be sequential!"
);
...
...
@@ -282,8 +282,8 @@ namespace Dune
DUNE_THROW
(
InvalidSolverCategory
,
"Preconditioner has to be sequential!"
);
}
IterativeSolver
(
LinearOperator
<
X
,
Y
>
&
op
,
ScalarProduct
<
X
>
&
sp
,
std
::
shared_ptr
<
Preconditioner
<
X
,
X
>
>
prec
,
const
ParameterTree
&
configuration
)
:
_op
(
stackobject_to_shared_ptr
(
op
)
)
,
IterativeSolver
(
std
::
shared_ptr
<
LinearOperator
<
X
,
Y
>
>
op
,
std
::
shared_ptr
<
ScalarProduct
<
X
>
>
sp
,
std
::
shared_ptr
<
Preconditioner
<
X
,
X
>
>
prec
,
const
ParameterTree
&
configuration
)
:
_op
(
op
),
_prec
(
prec
),
_sp
(
sp
),
_reduction
(
configuration
.
get
<
real_type
>
(
"reduction"
)),
...
...
This diff is collapsed.
Click to expand it.
dune/istl/solvers.hh
+
6
−
6
View file @
13c36c3d
...
...
@@ -1060,12 +1060,12 @@ namespace Dune {
_restart
(
restart
)
{}
RestartedGMResSolver
(
LinearOperator
<
X
,
Y
>
&
op
,
std
::
shared_ptr
<
Preconditioner
<
X
,
X
>
>
prec
,
const
ParameterTree
&
configuration
)
:
RestartedGMResSolver
(
std
::
shared_ptr
<
LinearOperator
<
X
,
Y
>
>
op
,
std
::
shared_ptr
<
Preconditioner
<
X
,
X
>
>
prec
,
const
ParameterTree
&
configuration
)
:
IterativeSolver
<
X
,
Y
>::
IterativeSolver
(
op
,
prec
,
configuration
),
_restart
(
configuration
.
get
<
int
>
(
"restart"
))
{}
RestartedGMResSolver
(
LinearOperator
<
X
,
Y
>
&
op
,
ScalarProduct
<
X
>
&
sp
,
std
::
shared_ptr
<
Preconditioner
<
X
,
X
>
>
prec
,
const
ParameterTree
&
configuration
)
:
RestartedGMResSolver
(
std
::
shared_ptr
<
LinearOperator
<
X
,
Y
>
>
op
,
std
::
shared_ptr
<
ScalarProduct
<
X
>
>
sp
,
std
::
shared_ptr
<
Preconditioner
<
X
,
X
>
>
prec
,
const
ParameterTree
&
configuration
)
:
IterativeSolver
<
X
,
Y
>::
IterativeSolver
(
op
,
sp
,
prec
,
configuration
),
_restart
(
configuration
.
get
<
int
>
(
"restart"
))
{}
...
...
@@ -1388,13 +1388,13 @@ namespace Dune {
{}
GeneralizedPCGSolver
(
LinearOperator
<
X
,
Y
>&
op
,
std
::
shared_ptr
<
Preconditioner
<
X
,
X
>
>
prec
,
const
ParameterTree
&
configuration
)
:
IterativeSolver
<
X
,
Y
>::
IterativeSolver
(
op
,
prec
,
configuration
),
GeneralizedPCGSolver
(
std
::
shared_ptr
<
LinearOperator
<
X
,
X
>
>
op
,
std
::
shared_ptr
<
Preconditioner
<
X
,
X
>
>
prec
,
const
ParameterTree
&
configuration
)
:
IterativeSolver
<
X
,
X
>::
IterativeSolver
(
op
,
prec
,
configuration
),
_restart
(
configuration
.
get
<
int
>
(
"restart"
))
{}
GeneralizedPCGSolver
(
LinearOperator
<
X
,
Y
>&
op
,
ScalarProduct
<
X
>
&
sp
,
std
::
shared_ptr
<
Preconditioner
<
X
,
X
>
>
prec
,
const
ParameterTree
&
configuration
)
:
IterativeSolver
<
X
,
Y
>::
IterativeSolver
(
op
,
sp
,
prec
,
configuration
),
GeneralizedPCGSolver
(
std
::
shared_ptr
<
LinearOperator
<
X
,
X
>
>
op
,
std
::
shared_ptr
<
ScalarProduct
<
X
>
>
sp
,
std
::
shared_ptr
<
Preconditioner
<
X
,
X
>
>
prec
,
const
ParameterTree
&
configuration
)
:
IterativeSolver
<
X
,
X
>::
IterativeSolver
(
op
,
sp
,
prec
,
configuration
),
_restart
(
configuration
.
get
<
int
>
(
"restart"
))
{}
/*!
...
...
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