Skip to content
Snippets Groups Projects
Commit c8baa08b authored by Christian Engwer's avatar Christian Engwer
Browse files

clearify documentation (see fs #353)

[[Imported from SVN: r5372]]
parent 24766775
No related branches found
No related tags found
No related merge requests found
...@@ -601,7 +601,7 @@ namespace Dune { ...@@ -601,7 +601,7 @@ namespace Dune {
#ifndef DUNE_EXPRESSIONTEMPLATES #ifndef DUNE_EXPRESSIONTEMPLATES
//===== Euclidean scalar product //===== Euclidean scalar product
//! scalar product //! scalar product (x^T y)
K operator* (const FieldVector& y) const K operator* (const FieldVector& y) const
{ {
K result = 0; K result = 0;
...@@ -610,7 +610,6 @@ namespace Dune { ...@@ -610,7 +610,6 @@ namespace Dune {
return result; return result;
} }
//===== norms //===== norms
//! one norm (sum over absolute values of entries) //! one norm (sum over absolute values of entries)
...@@ -946,7 +945,7 @@ namespace Dune { ...@@ -946,7 +945,7 @@ namespace Dune {
return *this; return *this;
} }
//! scalar product //! scalar product (x^T y)
inline K operator* ( const K & k ) const inline K operator* ( const K & k ) const
{ {
return p * k; return p * k;
...@@ -990,7 +989,6 @@ namespace Dune { ...@@ -990,7 +989,6 @@ namespace Dune {
return fvmeta_abs_real(p); return fvmeta_abs_real(p);
} }
//===== sizes //===== sizes
//! number of blocks in the vector (are of size 1 here) //! number of blocks in the vector (are of size 1 here)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment