aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/Pitfalls.dox
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-09-02 13:04:30 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-09-02 13:04:30 +0200
commitbe5e2ecc21b5ea22d692d80377301003654789db (patch)
treea057cd3ff35ba4667964002bde482694ca4d3744 /doc/Pitfalls.dox
parentaba8c9ee176de6821ab483a0f284f725e0e5d603 (diff)
bug #505: add more examples of bad and correct usages of auto and eval().
Diffstat (limited to 'doc/Pitfalls.dox')
-rw-r--r--doc/Pitfalls.dox16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/Pitfalls.dox b/doc/Pitfalls.dox
index 203843ca7..cf42effef 100644
--- a/doc/Pitfalls.dox
+++ b/doc/Pitfalls.dox
@@ -18,5 +18,21 @@ for(...) { ... w = C * v; ...}
In this example, the type of C is not a MatrixXd but an abstract expression representing a matrix product and storing references to A and B. Therefore, the product of A*B will be carried out multiple times, once per iteration of the for loop. Moreover, if the coefficients of A or B change during the iteration, then C will evaluate to different values.
+Here is another example leading to a segfault:
+\code
+auto C = ((A+B).eval()).transpose();
+// do something with C
+\endcode
+The problem is that eval() returns a temporary object (in this case a MatrixXd) which is then referenced by the Transpose<> expression. However, this temporary is deleted right after the first line, and there the C expression reference a dead object. The same issue might occur when sub expressions are automatically evaluated by Eigen as in the following example:
+\code
+VectorXd u, v;
+auto C = u + (A*v).normalized();
+// do something with C
+\endcode
+where the normalized() method has to evaluate the expensive product A*v to avoid evaluating it twice. On the other hand, the following example is perfectly fine:
+\code
+auto C = (u + (A*v).normalized()).eval();
+\endcode
+In this case, C will be a regular VectorXd object.
*/
}