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
a6fc8694
Commit
a6fc8694
authored
15 years ago
by
Oliver Sander
Browse files
Options
Downloads
Patches
Plain Diff
document the template parameters
[[Imported from SVN: r1023]]
parent
3557b214
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
istl/preconditioners.hh
+33
-2
33 additions, 2 deletions
istl/preconditioners.hh
with
33 additions
and
2 deletions
istl/preconditioners.hh
+
33
−
2
View file @
a6fc8694
...
...
@@ -64,6 +64,10 @@ namespace Dune {
This interface allows the encapsulation of all parallelization
aspects into the preconditioners.
\tparam X Type of the update
\tparam Y Type of the defect
*/
//=====================================================================
template
<
class
X
,
class
Y
>
...
...
@@ -130,6 +134,10 @@ namespace Dune {
Wraps the naked ISTL generic SOR preconditioner into the
solver framework.
\tparam M The matrix type to operate on
\tparam X Type of the update
\tparam Y Type of the defect
*/
template
<
class
M
,
class
X
,
class
Y
,
int
l
=
1
>
class
SeqSSOR
:
public
Preconditioner
<
X
,
Y
>
{
...
...
@@ -205,6 +213,10 @@ namespace Dune {
Wraps the naked ISTL generic SOR preconditioner into the
solver framework.
\tparam M The matrix type to operate on
\tparam X Type of the update
\tparam Y Type of the defect
*/
template
<
class
M
,
class
X
,
class
Y
,
int
l
=
1
>
class
SeqSOR
:
public
Preconditioner
<
X
,
Y
>
{
...
...
@@ -296,6 +308,10 @@ namespace Dune {
Wraps the naked ISTL generic block Gauss-Seidel preconditioner into the
solver framework.
\tparam M The matrix type to operate on
\tparam X Type of the update
\tparam Y Type of the defect
*/
template
<
class
M
,
class
X
,
class
Y
,
int
l
=
1
>
class
SeqGS
:
public
Preconditioner
<
X
,
Y
>
{
...
...
@@ -368,6 +384,10 @@ namespace Dune {
Wraps the naked ISTL generic block Jacobi preconditioner into the
solver framework.
\tparam M The matrix type to operate on
\tparam X Type of the update
\tparam Y Type of the defect
*/
template
<
class
M
,
class
X
,
class
Y
,
int
l
=
1
>
class
SeqJac
:
public
Preconditioner
<
X
,
Y
>
{
...
...
@@ -440,8 +460,11 @@ namespace Dune {
/*!
\brief Sequential ILU0 preconditioner.
Wraps the naked ISTL generic ILU0 preconditioner into the
solver framework.
Wraps the naked ISTL generic ILU0 preconditioner into the solver framework.
\tparam M The matrix type to operate on
\tparam X Type of the update
\tparam Y Type of the defect
*/
template
<
class
M
,
class
X
,
class
Y
>
class
SeqILU0
:
public
Preconditioner
<
X
,
Y
>
{
...
...
@@ -512,6 +535,11 @@ namespace Dune {
Wraps the naked ISTL generic ILU(n) preconditioner into the
solver framework.
\tparam M The matrix type to operate on
\tparam X Type of the update
\tparam Y Type of the defect
*/
template
<
class
M
,
class
X
,
class
Y
>
class
SeqILUn
:
public
Preconditioner
<
X
,
Y
>
{
...
...
@@ -586,6 +614,9 @@ namespace Dune {
\brief Richardson preconditioner.
Multiply simply by a constant.
\tparam X Type of the update
\tparam Y Type of the defect
*/
template
<
class
X
,
class
Y
>
class
Richardson
:
public
Preconditioner
<
X
,
Y
>
{
...
...
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