Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-solvers
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
agnumpde
dune-solvers
Commits
8c852f02
Commit
8c852f02
authored
12 years ago
by
Uli Sack
Committed by
usack
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
reformat docu
[[Imported from SVN: r6544]]
parent
84b0aaa9
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
dune/solvers/solvers/loopsolver.hh
+12
-11
12 additions, 11 deletions
dune/solvers/solvers/loopsolver.hh
with
12 additions
and
11 deletions
dune/solvers/solvers/loopsolver.hh
+
12
−
11
View file @
8c852f02
...
...
@@ -6,15 +6,15 @@
#include
<dune/solvers/norms/norm.hh>
/** \brief A solver which consists of a single loop
*
This class basically implements a loop that calls an iteration procedure
(which is to be supplied by the user). It also monitors convergence.
*/
*
*
This class basically implements a loop that calls an iteration procedure
*
(which is to be supplied by the user). It also monitors convergence.
*/
template
<
class
VectorType
,
class
BitVectorType
=
Dune
::
BitSetVector
<
VectorType
::
block_type
::
dimension
>
>
class
LoopSolver
:
public
IterativeSolver
<
VectorType
,
BitVectorType
>
{
public:
/** \brief Constructor taking all relevant data */
LoopSolver
(
IterationStep
<
VectorType
,
BitVectorType
>*
iterationStep
,
int
maxIterations
,
...
...
@@ -32,15 +32,16 @@ public:
referenceSolution_
(
referenceSolution
)
{}
/** \brief Checks whether all relevant member variables are set
* \exception SolverError if the iteration step is not set up properly
*/
/**
\brief Checks whether all relevant member variables are set
*
\exception SolverError if the iteration step is not set up properly
*/
virtual
void
check
()
const
;
/** \brief Loop, call the iteration procedure
* and monitor convergence */
/** \brief Loop, call the iteration procedure
* and monitor convergence
*/
virtual
void
solve
();
//! The iteration step used by the algorithm
IterationStep
<
VectorType
,
BitVectorType
>*
iterationStep_
;
...
...
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