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
a9b93ada
Commit
a9b93ada
authored
6 years ago
by
Nils-Arne Dreier
Browse files
Options
Downloads
Patches
Plain Diff
improve documentation
parent
51acc9e5
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/solver.hh
+15
-1
15 additions, 1 deletion
dune/istl/solver.hh
with
15 additions
and
1 deletion
dune/istl/solver.hh
+
15
−
1
View file @
a9b93ada
...
...
@@ -313,7 +313,8 @@ namespace Dune
prints the final output.
During the iteration in every step Iteration::step should be called with
the current iteration count and norm of the residual.
the current iteration count and norm of the residual. It returns true if
convergence is achieved.
*/
class
Iteration
{
friend
class
IterativeSolver
;
...
...
@@ -336,6 +337,16 @@ namespace Dune
finalize
();
}
/*! \brief registers the iteration step, checks for invalid defect norm
and convergence.
\param i The current iteration count
\param def The current norm of the defect
\return true is convergence is achieved
\throw SolverAbort when `def` contains inf or NaN
*/
bool
step
(
CountType
i
,
real_type
def
){
if
(
!
Simd
::
allTrue
(
isFinite
(
def
)))
// check for inf or NaN
{
...
...
@@ -384,6 +395,9 @@ namespace Dune
const
char
*
_solvername
;
};
/*! \brief Initializes the iteration. This function can be overridden for
setting the `solvername`.
*/
virtual
Iteration
startIteration
(
const
char
*
solvername
,
InverseOperatorResult
&
res
){
return
Iteration
(
solvername
,
*
this
,
res
);
}
...
...
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