Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux
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
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
dumux-repositories
dumux
Commits
930dd74f
Commit
930dd74f
authored
3 years ago
by
Timo Koch
Browse files
Options
Downloads
Patches
Plain Diff
[solver] Fix restartGMRes parameter number type
parent
6885e061
No related branches found
No related tags found
1 merge request
!2631
[solver] Fix restartGMRes parameter number type
Pipeline
#4241
passed
3 years ago
Stage: trigger
Stage: downstream modules
Pipeline: dumux-lecture
#4245
Pipeline: dumux
#4244
Pipeline: dumux
#4243
+1
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/linear/seqsolverbackend.hh
+1
-1
1 addition, 1 deletion
dumux/linear/seqsolverbackend.hh
with
1 addition
and
1 deletion
dumux/linear/seqsolverbackend.hh
+
1
−
1
View file @
930dd74f
...
@@ -1086,7 +1086,7 @@ public:
...
@@ -1086,7 +1086,7 @@ public:
{
{
BlockDiagILU0Preconditioner
<
Matrix
,
Vector
,
Vector
>
preconditioner
(
M
);
BlockDiagILU0Preconditioner
<
Matrix
,
Vector
,
Vector
>
preconditioner
(
M
);
Dune
::
MatrixAdapter
<
Matrix
,
Vector
,
Vector
>
op
(
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
,
Dune
::
RestartedGMResSolver
<
Vector
>
solver
(
op
,
preconditioner
,
this
->
residReduction
(),
restartGMRes
,
this
->
maxIter
(),
this
->
verbosity
());
this
->
maxIter
(),
this
->
verbosity
());
auto
bTmp
(
b
);
auto
bTmp
(
b
);
...
...
This diff is collapsed.
Click to expand it.
Timo Koch
@timok
mentioned in commit
a45c2595
·
3 years ago
mentioned in commit
a45c2595
mentioned in commit a45c25950f96027796e226a63f8ced30e2c18460
Toggle commit list
Timo Koch
@timok
mentioned in merge request
!2634 (merged)
·
3 years ago
mentioned in merge request
!2634 (merged)
mentioned in merge request !2634
Toggle commit list
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