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
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
Patrick Jaap
dune-istl
Commits
c9ef2390
Commit
c9ef2390
authored
14 years ago
by
Markus Blatt
Browse files
Options
Downloads
Patches
Plain Diff
reflect the interface change in the documentation.
[[Imported from SVN: r1244]]
parent
0c0c5311
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/istl/overlappingschwarz.hh
+10
-3
10 additions, 3 deletions
dune/istl/overlappingschwarz.hh
with
10 additions
and
3 deletions
dune/istl/overlappingschwarz.hh
+
10
−
3
View file @
c9ef2390
...
...
@@ -302,9 +302,6 @@ namespace Dune
* @tparam X The range and domain type.
* @tparam TM The Schwarz mode. Currently supported modes are AdditiveSchwarzMode,
* MultiplicativeSchwarzMode, and SymmetricMultiplicativeSchwarzMode. (Default values is AdditiveSchwarzMode)
* @tparam onTheFly If true the decomposition of the exact local solvers is computed on the fly for each subdomain and
* iteration step. If false all decompositions are computed in pre and only forward and backward substitution takes place
* in the iteration steps.
* @tparam TA The type of the allocator to use.
*/
template
<
class
M
,
class
X
,
class
TM
=
AdditiveSchwarzMode
,
class
TA
=
std
::
allocator
<
X
>
>
...
...
@@ -377,6 +374,11 @@ namespace Dune
* @param subDomains Array of sets of rowindices belonging to an overlapping
* subdomain
* @param relaxationFactor relaxation factor
* @param onTheFly If true the decomposition of the exact local solvers is
* computed on the fly for each subdomain and
* iteration step. If false all decompositions are computed in pre and
* only forward and backward substitution takes place
* in the iteration steps.
* @warning Each rowindex should be part of at least one subdomain!
*/
SeqOverlappingSchwarz
(
const
matrix_type
&
mat
,
const
subdomain_vector
&
subDomains
,
...
...
@@ -387,6 +389,11 @@ namespace Dune
* @param mat The matrix to precondition.
* @param rowToDomain The mapping of the rows onto the domains.
* @param relaxationFactor relaxation factor
* @param onTheFly If true the decomposition of the exact local solvers is
* computed on the fly for each subdomain and
* iteration step. If false all decompositions are computed in pre and
* only forward and backward substitution takes place
* in the iteration steps.
*/
SeqOverlappingSchwarz
(
const
matrix_type
&
mat
,
const
rowtodomain_vector
&
rowToDomain
,
field_type
relaxationFactor
=
1
,
bool
onTheFly_
=
true
);
...
...
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