From d0ac4fa479b7f3b19526034e59049b2f305ee48a Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Fri, 18 Sep 2009 22:02:28 -0400 Subject: [PATCH] explain how to get rid of it --- doc/UnalignedArrayAssert.dox | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/doc/UnalignedArrayAssert.dox b/doc/UnalignedArrayAssert.dox index 8590cdee2..1d207b712 100644 --- a/doc/UnalignedArrayAssert.dox +++ b/doc/UnalignedArrayAssert.dox @@ -12,7 +12,7 @@ is explained here: http://eigen.tuxfamily.org/dox/UnalignedArrayAssert.html **** READ THIS WEB PAGE !!! ****"' failed. -There are 3 known causes for this issue. Please read on to understand them and learn how to fix them. +There are 4 known causes for this issue. Please read on to understand them and learn how to fix them. \b Table \b of \b contents - \ref where @@ -21,6 +21,7 @@ There are 3 known causes for this issue. Please read on to understand them and l - \ref c3 - \ref c4 - \ref explanation + - \ref getrid \section where Where in my own code is the cause of the problem? @@ -101,6 +102,12 @@ Eigen normally takes care of these alignment issues for you, by setting an align However there are a few corner cases where these alignment settings get overridden: they are the possible causes for this assertion. +\section getrid I don't care about vectorization, how do I get rid of that stuff? + +Define both preprocessor symbols EIGEN_DONT_VECTORIZE and EIGEN_DISABLE_UNALIGNED_ARRAY_ASSERT. + +For more information, see this FAQ. + */ }