aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Block.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-07-17 16:22:39 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-07-17 16:22:39 +0200
commit32b08ac971b2ab66cf83360a9e2d42a99bfe3b70 (patch)
tree9200c0108ba115af363366ef4f8f176dca90cc2e /Eigen/src/Core/Block.h
parent15ed32dd6ef53111e6e29428418a65e1d3547c12 (diff)
re-implement stableNorm using a homemade blocky and
vectorization friendly algorithm (slow if no vectorization)
Diffstat (limited to 'Eigen/src/Core/Block.h')
-rw-r--r--Eigen/src/Core/Block.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/Core/Block.h b/Eigen/src/Core/Block.h
index 382518696..ffc0707ee 100644
--- a/Eigen/src/Core/Block.h
+++ b/Eigen/src/Core/Block.h
@@ -33,8 +33,8 @@
* \param MatrixType the type of the object in which we are taking a block
* \param BlockRows the number of rows of the block we are taking at compile time (optional)
* \param BlockCols the number of columns of the block we are taking at compile time (optional)
- * \param _PacketAccess allows to enforce aligned loads and stores if set to ForceAligned.
- * The default is AsRequested. This parameter is internaly used by Eigen
+ * \param _PacketAccess allows to enforce aligned loads and stores if set to \b ForceAligned.
+ * The default is \b AsRequested. This parameter is internaly used by Eigen
* in expressions such as \code mat.block() += other; \endcode and most of
* the time this is the only way it is used.
* \param _DirectAccessStatus \internal used for partial specialization