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
01016baf
Commit
01016baf
authored
13 years ago
by
Markus Blatt
Browse files
Options
Downloads
Patches
Plain Diff
Improve documentation a little.
[[Imported from SVN: r1550]]
parent
0e30c18f
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/paamg/kamg.hh
+6
-4
6 additions, 4 deletions
dune/istl/paamg/kamg.hh
with
6 additions
and
4 deletions
dune/istl/paamg/kamg.hh
+
6
−
4
View file @
01016baf
...
...
@@ -153,12 +153,14 @@ namespace Dune
* @brief Construct a new amg with a specific coarse solver.
* @param matrices The already set up matix hierarchy.
* @param coarseSolver The set up solver to use on the coarse
* grid, must
n
atch the s
o
arse matrix in the matrix hierachy.
* grid, must
m
atch the s
p
arse matrix in the matrix hierachy.
* @param smootherArgs The arguments needed for thesmoother to use
* for pre and post smoothing
* @param gamma The number of subcycles. 1 for V-cycle, 2 for W-cycle.
* @param preSmoothingSteps The number of smoothing steps for premoothing.
* @param postSmoothingSteps The number of smoothing steps for postmoothing.
* @param maxLevelKrylovSteps The maximum number of Krylov steps allowed at each level.
* @param minDefectReduction The minimal defect reduction to achieve on each Krylov level.
*/
KAMG
(
const
OperatorHierarchy
&
matrices
,
CoarseSolver
&
coarseSolver
,
const
SmootherArgs
&
smootherArgs
,
std
::
size_t
gamma
,
...
...
@@ -188,11 +190,11 @@ namespace Dune
std
::
size_t
maxLevelKrylovSteps
=
3
,
double
minDefectReduction
=
1e-1
,
const
ParallelInformation
&
pinfo
=
ParallelInformation
());
/** \copydoc
Solv
er::pre(X&,Y&) */
/** \copydoc
Precondition
er::pre(X&,Y&) */
void
pre
(
Domain
&
x
,
Range
&
b
);
/** \copydoc
Solv
er::post(X&) */
/** \copydoc
Precondition
er::post(X&) */
void
post
(
Domain
&
x
);
/** \copydoc
Solv
er::apply(X&,Y&) */
/** \copydoc
Precondition
er::apply(X&,Y&) */
void
apply
(
Domain
&
x
,
const
Range
&
b
);
std
::
size_t
maxlevels
();
...
...
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