aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-08-12 02:14:02 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-08-12 02:14:02 +0000
commit13ad88736e41cd22d057f67e39ba694be76f7010 (patch)
treed61adf7ab2edd10ae60d113b64dcb20547276265 /doc
parentf04c1cb774fae209c6d4d060bda15f7389764887 (diff)
last small fixes, this is alpha6, eigen2 is now ready for eigen1 apps to
port to.
Diffstat (limited to 'doc')
-rw-r--r--doc/Doxyfile.in5
-rw-r--r--doc/snippets/MatrixBase_lazy.cpp13
2 files changed, 7 insertions, 11 deletions
diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in
index 2f1a2d023..353d3b1d4 100644
--- a/doc/Doxyfile.in
+++ b/doc/Doxyfile.in
@@ -31,7 +31,7 @@ PROJECT_NAME = Eigen
# This could be handy for archiving the generated documentation or
# if some version control system is used.
-PROJECT_NUMBER = 2.0-alpha5
+PROJECT_NUMBER = 2.0-alpha6
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
@@ -1185,7 +1185,8 @@ INCLUDE_FILE_PATTERNS =
PREDEFINED = EIGEN_EMPTY_STRUCT \
EIGEN_PARSED_BY_DOXYGEN \
- EIGEN_VECTORIZE
+ EIGEN_VECTORIZE \
+ EIGEN_QT_SUPPORT
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
# this tag can be used to specify a list of macro names that should be expanded.
diff --git a/doc/snippets/MatrixBase_lazy.cpp b/doc/snippets/MatrixBase_lazy.cpp
index 41815c69a..0177b1e51 100644
--- a/doc/snippets/MatrixBase_lazy.cpp
+++ b/doc/snippets/MatrixBase_lazy.cpp
@@ -1,10 +1,5 @@
Matrix2d m; m << 1,2,3,4;
-Matrix2d n;
-n = (m*m).lazy(); // if we did "n = m*m;" then m*m would first be evaluated into
- // a temporary, because the Product expression has the EvalBeforeAssigningBit.
- // This temporary would then be copied into n. Introducing this temporary is
- // useless here and wastes time. Doing "n = (m*m).lazy();" evaluates m*m directly
- // into n, which is faster. But, beware! This is only correct because m and n
- // are two distinct matrices. Doing "m = (m*m).lazy();" would not produce the
- // expected result.
-cout << n << endl;
+cout << (m*m).lazy().row(0) << endl;
+ // this computes only one row of the product. By contrast,
+ // if we did "(m*m).row(0);" then m*m would first be evaluated into
+ // a temporary, because the Product expression has the EvalBeforeNestingBit.