diff --git a/Eigen/src/AccelerateSupport/AccelerateSupport.h b/Eigen/src/AccelerateSupport/AccelerateSupport.h index a2c83d76f..0417688b0 100644 --- a/Eigen/src/AccelerateSupport/AccelerateSupport.h +++ b/Eigen/src/AccelerateSupport/AccelerateSupport.h @@ -17,12 +17,12 @@ class AccelerateImpl; * \warning Only single and double precision real scalar types are supported by Accelerate * * \tparam MatrixType_ the type of the sparse matrix A, it must be a SparseMatrix<> - * \tparam UpLo_ additional information about the matrix structure. Default is Lower | Symmetric. + * \tparam UpLo_ additional information about the matrix structure. Default is Lower. * * \sa \ref TutorialSparseSolverConcept, class AccelerateLLT */ -template -using AccelerateLLT = AccelerateImpl; +template +using AccelerateLLT = AccelerateImpl; /** \ingroup AccelerateSupport_Module * \class AccelerateLDLT @@ -31,12 +31,12 @@ using AccelerateLLT = AccelerateImpl - * \tparam UpLo_ additional information about the matrix structure. Default is Lower | Symmetric. + * \tparam UpLo_ additional information about the matrix structure. Default is Lower. * * \sa \ref TutorialSparseSolverConcept, class AccelerateLDLT */ -template -using AccelerateLDLT = AccelerateImpl; +template +using AccelerateLDLT = AccelerateImpl; /** \ingroup AccelerateSupport_Module * \class AccelerateLDLTUnpivoted @@ -45,12 +45,12 @@ using AccelerateLDLT = AccelerateImpl - * \tparam UpLo_ additional information about the matrix structure. Default is Lower | Symmetric. + * \tparam UpLo_ additional information about the matrix structure. Default is Lower. * * \sa \ref TutorialSparseSolverConcept, class AccelerateLDLTUnpivoted */ -template -using AccelerateLDLTUnpivoted = AccelerateImpl; +template +using AccelerateLDLTUnpivoted = AccelerateImpl; /** \ingroup AccelerateSupport_Module * \class AccelerateLDLTSBK @@ -59,12 +59,12 @@ using AccelerateLDLTUnpivoted = AccelerateImpl - * \tparam UpLo_ additional information about the matrix structure. Default is Lower | Symmetric. + * \tparam UpLo_ additional information about the matrix structure. Default is Lower. * * \sa \ref TutorialSparseSolverConcept, class AccelerateLDLTSBK */ -template -using AccelerateLDLTSBK = AccelerateImpl; +template +using AccelerateLDLTSBK = AccelerateImpl; /** \ingroup AccelerateSupport_Module * \class AccelerateLDLTTPP @@ -73,12 +73,12 @@ using AccelerateLDLTSBK = AccelerateImpl - * \tparam UpLo_ additional information about the matrix structure. Default is Lower | Symmetric. + * \tparam UpLo_ additional information about the matrix structure. Default is Lower. * * \sa \ref TutorialSparseSolverConcept, class AccelerateLDLTTPP */ -template -using AccelerateLDLTTPP = AccelerateImpl; +template +using AccelerateLDLTTPP = AccelerateImpl; /** \ingroup AccelerateSupport_Module * \class AccelerateQR @@ -87,12 +87,11 @@ using AccelerateLDLTTPP = AccelerateImpl - * \tparam UpLo_ additional information about the matrix structure. Default is 0. * * \sa \ref TutorialSparseSolverConcept, class AccelerateQR */ -template -using AccelerateQR = AccelerateImpl; +template +using AccelerateQR = AccelerateImpl; /** \ingroup AccelerateSupport_Module * \class AccelerateCholeskyAtA @@ -101,12 +100,11 @@ using AccelerateQR = AccelerateImpl - * \tparam UpLo_ additional information about the matrix structure. Default is 0. * * \sa \ref TutorialSparseSolverConcept, class AccelerateCholeskyAtA */ -template -using AccelerateCholeskyAtA = AccelerateImpl; +template +using AccelerateCholeskyAtA = AccelerateImpl; namespace internal { template diff --git a/test/accelerate_support.cpp b/test/accelerate_support.cpp index e04895b92..ac4be6129 100644 --- a/test/accelerate_support.cpp +++ b/test/accelerate_support.cpp @@ -152,21 +152,21 @@ void run_tests() { typedef SparseMatrix MatrixType; - test_accelerate_ldlt >(); - test_accelerate_ldlt >(); - test_accelerate_ldlt >(); - test_accelerate_ldlt >(); + test_accelerate_ldlt >(); + test_accelerate_ldlt >(); + test_accelerate_ldlt >(); + test_accelerate_ldlt >(); - test_accelerate_ldlt >(); - test_accelerate_ldlt >(); - test_accelerate_ldlt >(); - test_accelerate_ldlt >(); + test_accelerate_ldlt >(); + test_accelerate_ldlt >(); + test_accelerate_ldlt >(); + test_accelerate_ldlt >(); - test_accelerate_llt >(); + test_accelerate_llt >(); - test_accelerate_llt >(); + test_accelerate_llt >(); - test_accelerate_qr >(); + test_accelerate_qr >(); } EIGEN_DECLARE_TEST(accelerate_support)