aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2019-01-16 16:29:02 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2019-01-16 16:29:02 +0100
commitce88e297dcae94952f4dbe6386fa63b6962d3432 (patch)
tree9899a13a056735f857a5dab1bdfc77beb3a7c34f /doc
parent729d1291c229da60cd7f96c71a734994e7cf6f27 (diff)
Add a comment stating this doc page is partly obsolete.
Diffstat (limited to 'doc')
-rw-r--r--doc/InsideEigenExample.dox5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/InsideEigenExample.dox b/doc/InsideEigenExample.dox
index ed053c69d..ea2275bf2 100644
--- a/doc/InsideEigenExample.dox
+++ b/doc/InsideEigenExample.dox
@@ -212,6 +212,11 @@ Thus, the operator+ hasn't performed any actual computation. To summarize, the o
\section Assignment The assignment
+<div class="warningbox">
+<strong>PLEASE HELP US IMPROVING THIS SECTION.</strong>
+This page reflects how %Eigen worked until 3.2, but since %Eigen 3.3 the assignment is more sophisticated as it involves an Assignment expression, and the creation of so called evaluator which are responsible for the evaluation of each kind of expressions.
+</div>
+
At this point, the expression \a v + \a w has finished evaluating, so, in the process of compiling the line of code
\code
u = v + w;