Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dumux-repositories
dumux
Commits
930dd74f
Commit
930dd74f
authored
May 20, 2021
by
Timo Koch
Browse files
[solver] Fix restartGMRes parameter number type
parent
6885e061
Pipeline
#4241
passed with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
dumux/linear/seqsolverbackend.hh
View file @
930dd74f
...
...
@@ -1086,7 +1086,7 @@ public:
{
BlockDiagILU0Preconditioner
<
Matrix
,
Vector
,
Vector
>
preconditioner
(
M
);
Dune
::
MatrixAdapter
<
Matrix
,
Vector
,
Vector
>
op
(
M
);
static
const
int
restartGMRes
=
getParamFromGroup
<
double
>
(
this
->
paramGroup
(),
"LinearSolver.GMResRestart"
);
static
const
int
restartGMRes
=
getParamFromGroup
<
int
>
(
this
->
paramGroup
(),
"LinearSolver.GMResRestart"
);
Dune
::
RestartedGMResSolver
<
Vector
>
solver
(
op
,
preconditioner
,
this
->
residReduction
(),
restartGMRes
,
this
->
maxIter
(),
this
->
verbosity
());
auto
bTmp
(
b
);
...
...
Timo Koch
@timok
mentioned in commit
a45c2595
·
May 21, 2021
mentioned in commit
a45c2595
mentioned in commit a45c25950f96027796e226a63f8ced30e2c18460
Toggle commit list
Timo Koch
@timok
mentioned in merge request
!2634 (merged)
·
May 21, 2021
mentioned in merge request
!2634 (merged)
mentioned in merge request !2634
Toggle commit list
Write
Preview
Supports
Markdown
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