diff --git a/Eigen/AccelerateSupport b/Eigen/AccelerateSupport index 0929501c8..8cee7accc 100644 --- a/Eigen/AccelerateSupport +++ b/Eigen/AccelerateSupport @@ -33,17 +33,14 @@ * the include paths, and your binary must be linked to the Accelerate framework. * The Accelerate library is only available on Apple hardware. * - * Note that many of the algorithms require additional information about your - * matrices. This can be provided by setting the UpLo template argument when - * defining the factorization class. For example, the following creates an - * LDLT factorization where your matrix is symmetric and uses the lower - * triangle: + * Note that many of the algorithms can be influenced by the UpLo template + * argument. All matrices are assumed to be symmetric. For example, the following + * creates an LDLT factorization where your matrix is symmetric (implicit) and + * uses the lower triangle: * * \code - * AccelerateLDLT, Lower | Symmetric> ldlt; + * AccelerateLDLT, Lower> ldlt; * \endcode - * - * Failure to do so may result in your application crashing. */ #include "src/AccelerateSupport/AccelerateSupport.h"