aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar Chen-Pang He <jdh8@ms63.hinet.net>2012-08-30 23:40:30 +0800
committerGravatar Chen-Pang He <jdh8@ms63.hinet.net>2012-08-30 23:40:30 +0800
commitd23134e4a7d689431a717a1ecf376b12b01afa24 (patch)
treed28a79e969a31a2bf70549d11b1a5938fdbd7828 /doc
parent9da41cc527ec595feb3377d089db6cd3adc9a5c8 (diff)
Avoid inefficient 2x2 LU. Move atanh to internal for maintainability.
Diffstat (limited to 'doc')
-rw-r--r--doc/I02_HiPerformance.dox2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/I02_HiPerformance.dox b/doc/I02_HiPerformance.dox
index d7a02fb5c..ab6cdfd44 100644
--- a/doc/I02_HiPerformance.dox
+++ b/doc/I02_HiPerformance.dox
@@ -79,7 +79,7 @@ temp = m2 * m3;
m1 += temp.adjoint(); \endcode</td>
<td>\code
m1.noalias() += m3.adjoint()
-* * m2.adjoint(); \endcode</td>
+* * m2.adjoint(); \endcode</td>
<td>This is because the product expression has the EvalBeforeNesting bit which
enforces the evaluation of the product by the Tranpose expression.</td>
</tr>