diff options
author | Thomas Capricelli <orzel@freehackers.org> | 2011-04-19 17:41:59 +0200 |
---|---|---|
committer | Thomas Capricelli <orzel@freehackers.org> | 2011-04-19 17:41:59 +0200 |
commit | 50c00d14c87133859f9eaaeb00a4a502b9e8fa2a (patch) | |
tree | b4c493bb3886dacf416319eecb931bd453ea84f5 /doc | |
parent | e87f6539241b55ed03b175908e6326b385cf3920 (diff) |
be nice with the server : dont use -j3
Diffstat (limited to 'doc')
-rw-r--r-- | doc/snippets/MatrixBase_reverse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/snippets/MatrixBase_reverse.cpp b/doc/snippets/MatrixBase_reverse.cpp index f545a2837..0fa68b006 100644 --- a/doc/snippets/MatrixBase_reverse.cpp +++ b/doc/snippets/MatrixBase_reverse.cpp @@ -4,5 +4,5 @@ cout << "Here is the reverse of m:" << endl << m.reverse() << endl; cout << "Here is the coefficient (1,0) in the reverse of m:" << endl << m.reverse()(1,0) << endl; cout << "Let us overwrite this coefficient with the value 4." << endl; -m.reverse()(1,0) = 4; +//m.reverse()(1,0) = 4; cout << "Now the matrix m is:" << endl << m << endl; |