// Note that in the above computation
// of the local matrix contribution
- // we added the term <code> phi_p[i]
- // * phi_p[j] </code>, yielding a
+ // we added the term <code> phi_p[i] *
+ // phi_p[j] </code>, yielding a
// pressure mass matrix in the
// $(1,1)$ block of the matrix as
// discussed in the
* \mathbf u(\mathbf x) = \frac{1}{\text{det}J(\mathbf x)}
* J(\mathbf x) \mathbf{\hat u}(\mathbf x).
* @f]
- * @todo What is n in mapping_piola description?
* </ul>
*
+ * @todo What is n in mapping_piola description?
*/
virtual
void
const unsigned int j);
/**
- * <i>A(i,1...n) += s*A(j,1...n)
- * + t*A(k,1...n)</i>. Multiple
+ * <i>A(i,1...n) += s*A(j,1...n) +
+ * t*A(k,1...n)</i>. Multiple
* addition of rows of this.
*/
void add_row (const unsigned int i,
const unsigned int j);
/**
- * <i>A(1...n,i) += s*A(1...n,j)
- * + t*A(1...n,k)</i>. Multiple
+ * <i>A(1...n,i) += s*A(1...n,j) +
+ * t*A(1...n,k)</i>. Multiple
* addition of columns of this.
*/
void add_col (const unsigned int i,
/**
* Tranposed matrix-vector
- * product <i>w = m2<sup>T</sup>
- * * m1<sup>T</sup> * v</i>.
+ * product <i>w = m2<sup>T</sup> *
+ * m1<sup>T</sup> * v</i>.
*/
virtual void Tvmult (VECTOR& w,
const VECTOR& v) const;
/**
* Tranposed matrix-vector
- * product <i>w = m2<sup>T</sup>
- * * m1<sup>T</sup> * v</i>.
+ * product <i>w = m2<sup>T</sup> *
+ * m1<sup>T</sup> * v</i>.
*/
virtual void Tvmult (VectorType& w,
const VectorType& v) const;
/**
* Multiple addition of scaled
- * vectors, i.e. <tt>*this = a*V
- * + b*W</tt>.
+ * vectors, i.e. <tt>*this = a*V +
+ * b*W</tt>.
*/
void add (const TrilinosScalar a,
const VectorBase &V,