Skip to content
Snippets Groups Projects
Commit ea0e3d1b authored by Markus Blatt's avatar Markus Blatt
Browse files

I seem to have problems to differentiate between left and right,

[[Imported from SVN: r1363]]
parent 2a31211d
No related branches found
No related tags found
No related merge requests found
......@@ -247,8 +247,8 @@ namespace Dune
DynamicVector<K> & lhs();
/**
* @brief Get the local left hand side.
* @return The local left hand side.
* @brief Get the local right hand side.
* @return The local right hand side.
*/
inline
DynamicVector<K> & rhs();
......@@ -289,7 +289,7 @@ namespace Dune
DynamicVector<field_type> * lhs_;
/** @brief The global right hand side for the defect calculation. */
const range_type* b;
/** @brief The global left hand side for adding the local update to. */
/** @brief The global right hand side for adding the local update to. */
range_type* x;
/** @brief The current local index. */
std::size_t i;
......@@ -336,8 +336,8 @@ namespace Dune
field_type* lhs();
/**
* @brief Get the local left hand side.
* @return The local left hand side.
* @brief Get the local right hand side.
* @return The local right hand side.
*/
field_type* rhs();
......@@ -373,7 +373,7 @@ namespace Dune
field_type* lhs_;
/** @brief The global right hand side for the defect calculation. */
const range_type* b;
/** @brief The global left hand side for adding the local update to. */
/** @brief The global right hand side for adding the local update to. */
range_type* x;
/** @brief The current local index. */
std::size_t i;
......@@ -421,8 +421,8 @@ namespace Dune
X& lhs();
/**
* @brief Get the local left hand side.
* @return The local left hand side.
* @brief Get the local right hand side.
* @return The local right hand side.
*/
Y& rhs();
......@@ -452,9 +452,9 @@ namespace Dune
* @brief The global matrix for the defect calculation.
*/
const M* mat;
/** @brief The local right hand side. */
X* lhs_;
/** @brief The local left hand side. */
X* lhs_;
/** @brief The local right hand side. */
Y* rhs_;
/** @brief The global right hand side for the defect calculation. */
const Y* b;
......
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