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
6643da97
Commit
6643da97
authored
14 years ago
by
Markus Blatt
Browse files
Options
Downloads
Patches
Plain Diff
Made template parameters more uniform.
[[Imported from SVN: r1291]]
parent
116b6e0f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/istl/preconditioners.hh
+10
-2
10 additions, 2 deletions
dune/istl/preconditioners.hh
with
10 additions
and
2 deletions
dune/istl/preconditioners.hh
+
10
−
2
View file @
6643da97
...
...
@@ -138,6 +138,7 @@ namespace Dune {
\tparam M The matrix type to operate on
\tparam X Type of the update
\tparam Y Type of the defect
\tparam l The block level to invert. Default is 1
*/
template
<
class
M
,
class
X
,
class
Y
,
int
l
=
1
>
class
SeqSSOR
:
public
Preconditioner
<
X
,
Y
>
{
...
...
@@ -217,6 +218,7 @@ namespace Dune {
\tparam M The matrix type to operate on
\tparam X Type of the update
\tparam Y Type of the defect
\tparam l The block level to invert. Default is 1
*/
template
<
class
M
,
class
X
,
class
Y
,
int
l
=
1
>
class
SeqSOR
:
public
Preconditioner
<
X
,
Y
>
{
...
...
@@ -312,6 +314,7 @@ namespace Dune {
\tparam M The matrix type to operate on
\tparam X Type of the update
\tparam Y Type of the defect
\tparam l The block level to invert. Default is 1
*/
template
<
class
M
,
class
X
,
class
Y
,
int
l
=
1
>
class
SeqGS
:
public
Preconditioner
<
X
,
Y
>
{
...
...
@@ -388,6 +391,7 @@ namespace Dune {
\tparam M The matrix type to operate on
\tparam X Type of the update
\tparam Y Type of the defect
\tparam l The block level to invert. Default is 1
*/
template
<
class
M
,
class
X
,
class
Y
,
int
l
=
1
>
class
SeqJac
:
public
Preconditioner
<
X
,
Y
>
{
...
...
@@ -465,8 +469,10 @@ namespace Dune {
\tparam M The matrix type to operate on
\tparam X Type of the update
\tparam Y Type of the defect
\tparam l Ignored. Just there to have the same number of template arguments
as other preconditioners.
*/
template
<
class
M
,
class
X
,
class
Y
>
template
<
class
M
,
class
X
,
class
Y
,
int
l
=
1
>
class
SeqILU0
:
public
Preconditioner
<
X
,
Y
>
{
public:
//! \brief The matrix type the preconditioner is for.
...
...
@@ -540,8 +546,10 @@ namespace Dune {
\tparam M The matrix type to operate on
\tparam X Type of the update
\tparam Y Type of the defect
\tparam l Ignored. Just there to have the same number of template arguments
as other preconditioners.
*/
template
<
class
M
,
class
X
,
class
Y
>
template
<
class
M
,
class
X
,
class
Y
,
int
l
=
1
>
class
SeqILUn
:
public
Preconditioner
<
X
,
Y
>
{
public:
//! \brief The matrix type the preconditioner is for.
...
...
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