Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dumux-repositories
dumux
Commits
94e75dfe
Commit
94e75dfe
authored
Nov 29, 2018
by
Sina Ackermann
Committed by
Simon Scholz
Nov 30, 2018
Browse files
[doxygen] Reduce doxygen errors in linear folder
parent
5976dfee
Changes
2
Hide whitespace changes
Inline
Side-by-side
dumux/linear/amgbackend.hh
View file @
94e75dfe
...
...
@@ -92,8 +92,6 @@ public:
/*!
* \brief Construct the backend for the sequential case only
*
* \param gridView the grid view on which we are performing the multi-grid
* \param dofMapper an index mapper for dof entities
* \param paramGroup the parameter group for parameter lookup
*/
ParallelAMGBackend
(
const
std
::
string
&
paramGroup
=
""
)
...
...
dumux/linear/seqsolverbackend.hh
View file @
94e75dfe
...
...
@@ -866,8 +866,8 @@ public:
/*! \brief Constructor.
Constructor gets all parameters to operate the prec.
\param
A
The (multi type block) matrix to operate on
.
\param w The relaxation factor
.
\param
m
The (multi type block) matrix to operate on
\param w The relaxation factor
*/
BlockDiagILU0Preconditioner
(
const
M
&
m
,
double
w
=
1.0
)
:
BlockDiagILU0Preconditioner
(
m
,
w
,
std
::
make_index_sequence
<
M
::
size
()
>
{})
...
...
@@ -878,13 +878,13 @@ public:
/*!
\brief Prepare the preconditioner.
\copydoc Preconditioner::pre(X&,Y&)
\copydoc
Dune::
Preconditioner::pre(X&,Y&)
*/
void
pre
(
X
&
v
,
Y
&
d
)
final
{}
/*!
* \brief Apply the preconditoner.
* \copydoc Preconditioner::apply(X&,const Y&)
* \copydoc
Dune::
Preconditioner::apply(X&,const Y&)
*/
void
apply
(
X
&
v
,
const
Y
&
d
)
final
{
...
...
@@ -897,7 +897,7 @@ public:
/*!
* \brief Clean up.
* \copydoc Preconditioner::post(X&)
* \copydoc
Dune::
Preconditioner::post(X&)
*/
void
post
(
X
&
)
final
{}
...
...
@@ -994,8 +994,9 @@ public:
/*! \brief Constructor.
Constructor gets all parameters to operate the prec.
\param A The (multi type block) matrix to operate on.
\param w The relaxation factor.
\param lop The linear operator
\param c The criterion
\param sa The smoother arguments
*/
template
<
class
LOP
,
class
Criterion
,
class
SmootherArgs
>
BlockDiagAMGPreconditioner
(
const
LOP
&
lop
,
const
Criterion
&
c
,
const
SmootherArgs
&
sa
)
...
...
@@ -1007,7 +1008,7 @@ public:
/*!
\brief Prepare the preconditioner.
\copydoc Preconditioner::pre(X&,Y&)
\copydoc
Dune::
Preconditioner::pre(X&,Y&)
*/
void
pre
(
X
&
v
,
Y
&
d
)
final
{
...
...
@@ -1020,7 +1021,7 @@ public:
/*!
* \brief Apply the preconditoner.
* \copydoc Preconditioner::apply(X&,const Y&)
* \copydoc
Dune::
Preconditioner::apply(X&,const Y&)
*/
void
apply
(
X
&
v
,
const
Y
&
d
)
final
{
...
...
@@ -1033,7 +1034,7 @@ public:
/*!
* \brief Clean up.
* \copydoc Preconditioner::post(X&)
* \copydoc
Dune::
Preconditioner::post(X&)
*/
void
post
(
X
&
v
)
final
{
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment