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

update documentation of dot product

(thanks to Matthias Wohlmuth)

[[Imported from SVN: r1646]]
parent 40e70ddb
No related branches found
No related tags found
No related merge requests found
......@@ -101,13 +101,13 @@ namespace Dune {
//! define the category
enum {category=SolverCategory::sequential};
/*! \brief Dot product of two vectors.
/*! \brief Dot product of two vectors. In the complex case, the first argument is conjugated.
It is assumed that the vectors are consistent on the interior+border
partition.
*/
virtual field_type dot (const X& x, const X& y)
{
return x*y;
return x.dot(y);
}
/*! \brief Norm of a right-hand side vector.
......
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