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
Wiki
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
Core Modules
dune-istl
Commits
b6ffab55
Commit
b6ffab55
authored
7 years ago
by
Robert K
Browse files
Options
Downloads
Patches
Plain Diff
[cleanup][istl] Remove deprecated preconditioners SeqILU0 and SeqILUn.
Replaced by SeqILU.
parent
890fb953
No related branches found
No related tags found
1 merge request
!369
Feature/add python bindings
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
preconditioners.hh
+2
-19
2 additions, 19 deletions
preconditioners.hh
with
2 additions
and
19 deletions
preconditioners.hh
+
2
−
19
View file @
b6ffab55
...
...
@@ -171,25 +171,8 @@ namespace Dune
The Jacobi iteration can only be applied if the matrix diagonal entries are all non-zeros.
)doc"
);
module
.
def
(
"SeqILU0"
,
[]
(
const
M
&
A
,
field_type
w
)
{
return
static_cast
<
Preconditioner
*
>
(
new
SeqILU0
<
M
,
X
,
Y
>
(
A
,
w
)
);
},
"matrix"
_a
,
"relaxation"
_a
=
field_type
(
1
),
R"doc(
Incomplete LU factorization (without fill-in) preconditioner
Args:
matrix: matrix to precondition
relaxation: factor to relax the iterations (default: 1)
Returns:
ISTL Sequential incomplete LU factorization preconditioner
Note:
The incomplete LU factorization with fill-in has the same sparsity pattern as the given matrix.
)doc"
);
module
.
def
(
"SeqILUn"
,
[]
(
const
M
&
A
,
int
n
,
field_type
w
)
{
return
static_cast
<
Preconditioner
*
>
(
new
SeqILUn
<
M
,
X
,
Y
>
(
A
,
n
,
w
)
);
module
.
def
(
"SeqILU"
,
[]
(
const
M
&
A
,
int
n
,
field_type
w
)
{
return
static_cast
<
Preconditioner
*
>
(
new
SeqILU
<
M
,
X
,
Y
>
(
A
,
n
,
w
)
);
},
"matrix"
_a
,
"iterations"
_a
=
1
,
"relaxation"
_a
=
field_type
(
1
),
R"doc(Incomplete LU factorization (with fill-in) preconditioner
...
...
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