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
a4a06b80
Commit
a4a06b80
authored
17 years ago
by
Christian Engwer
Browse files
Options
Downloads
Patches
Plain Diff
small doxygen fixes
[[Imported from SVN: r773]]
parent
c9dbdf01
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
istl/matrixindexset.hh
+4
-2
4 additions, 2 deletions
istl/matrixindexset.hh
istl/paamg/aggregates.hh
+6
-3
6 additions, 3 deletions
istl/paamg/aggregates.hh
with
10 additions
and
5 deletions
istl/matrixindexset.hh
+
4
−
2
View file @
a4a06b80
...
...
@@ -53,7 +53,8 @@ namespace Dune {
int
rowsize
(
int
row
)
const
{
return
indices_
[
row
].
size
();}
/** \brief Import all nonzero entries of a sparse matrix into the index set
* \tparam MatrixType Needs to be BCRSMatrix<...>
\param MatrixType Needs to be BCRSMatrix<...>
\param matrix reference to the MatrixType object
*/
template
<
class
MatrixType
>
void
import
(
const
MatrixType
&
m
,
int
rowOffset
=
0
,
int
colOffset
=
0
)
{
...
...
@@ -77,7 +78,8 @@ namespace Dune {
/** \brief Initializes a BCRSMatrix with the indices contained
in this MatrixIndexSet
\tparam MatrixType Needs to be BCRSMatrix<...>
\param MatrixType Needs to be BCRSMatrix<...>
\param matrix reference to the MatrixType object
*/
template
<
class
MatrixType
>
void
exportIdx
(
MatrixType
&
matrix
)
const
{
...
...
This diff is collapsed.
Click to expand it.
istl/paamg/aggregates.hh
+
6
−
3
View file @
a4a06b80
...
...
@@ -350,8 +350,10 @@ namespace Dune
* @brief Criterion taking advantage of symmetric matrices.
*
* The two template parameters are:
* <dl>
* <dt>M</dt> <dd>The type of the matrix the amg coarsening works on, e. g. BCRSMatrix</dd>
* <dt>Norm</dt> <dd>The norm to use to determine the strong couplings between the nodes, e.g. FirstDiagonal or RowSum.</dd>
* </dl>
*/
template
<
class
M
,
class
Norm
>
class
SymmetricCriterion
:
public
AggregationCriterion
<
SymmetricDependency
<
M
,
Norm
>
>
...
...
@@ -364,8 +366,10 @@ namespace Dune
* Nevertheless the sparsity pattern has to be symmetric.
*
* The two template parameters are:
* <dl>
* <dt>M</dt> <dd>The type of the matrix the amg coarsening works on, e. g. BCRSMatrix</dd>
* <dt>Norm</dt> <dd>The norm to use to determine the strong couplings between the nodes, e.g. FirstDiagonal or RowSum.</dd>
* </dl>
*/
template
<
class
M
,
class
Norm
>
class
UnSymmetricCriterion
:
public
AggregationCriterion
<
Dependency
<
M
,
Norm
>
>
...
...
@@ -460,12 +464,11 @@ namespace Dune
* @brief Breadth first search within an aggregate
*
* The template parameters: <br>
* <dl>
* <dt>reset</dt><dd>If true the visited flags of the vertices
* <dl><dt>reset</dt><dd>If true the visited flags of the vertices
* will be reset after
* the search</dd>
* <dt>G</dt><dd>The type of the graph we perform the search on.</dd>
* <
t
d>F</dt><dd>The type of the visitor to operate on the vertices</dd>
* <d
t
>F</dt><dd>The type of the visitor to operate on the vertices</dd>
* </dl>
* @param start The vertex where the search should start
* from. This does not need to belong to the aggregate.
...
...
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