Clang-format tests, examples, libraries, benchmarks, etc.

This commit is contained in:
Antonio Sánchez
2023-12-05 21:22:55 +00:00
committed by Rasmus Munk Larsen
parent 3252ecc7a4
commit 46e9cdb7fe
876 changed files with 33453 additions and 37795 deletions

View File

@@ -9,17 +9,17 @@
#include "sparse_solver.h"
template<typename T, typename I_, int flag> void test_simplicial_cholesky_T()
{
typedef SparseMatrix<T,flag,I_> SparseMatrixType;
template <typename T, typename I_, int flag>
void test_simplicial_cholesky_T() {
typedef SparseMatrix<T, flag, I_> SparseMatrixType;
SimplicialCholesky<SparseMatrixType, Lower> chol_colmajor_lower_amd;
SimplicialCholesky<SparseMatrixType, Upper> chol_colmajor_upper_amd;
SimplicialLLT< SparseMatrixType, Lower> llt_colmajor_lower_amd;
SimplicialLLT< SparseMatrixType, Upper> llt_colmajor_upper_amd;
SimplicialLDLT< SparseMatrixType, Lower> ldlt_colmajor_lower_amd;
SimplicialLDLT< SparseMatrixType, Upper> ldlt_colmajor_upper_amd;
SimplicialLDLT< SparseMatrixType, Lower, NaturalOrdering<I_> > ldlt_colmajor_lower_nat;
SimplicialLDLT< SparseMatrixType, Upper, NaturalOrdering<I_> > ldlt_colmajor_upper_nat;
SimplicialLLT<SparseMatrixType, Lower> llt_colmajor_lower_amd;
SimplicialLLT<SparseMatrixType, Upper> llt_colmajor_upper_amd;
SimplicialLDLT<SparseMatrixType, Lower> ldlt_colmajor_lower_amd;
SimplicialLDLT<SparseMatrixType, Upper> ldlt_colmajor_upper_amd;
SimplicialLDLT<SparseMatrixType, Lower, NaturalOrdering<I_> > ldlt_colmajor_lower_nat;
SimplicialLDLT<SparseMatrixType, Upper, NaturalOrdering<I_> > ldlt_colmajor_upper_nat;
check_sparse_spd_solving(chol_colmajor_lower_amd);
check_sparse_spd_solving(chol_colmajor_upper_amd);
@@ -27,24 +27,23 @@ template<typename T, typename I_, int flag> void test_simplicial_cholesky_T()
check_sparse_spd_solving(llt_colmajor_upper_amd);
check_sparse_spd_solving(ldlt_colmajor_lower_amd);
check_sparse_spd_solving(ldlt_colmajor_upper_amd);
check_sparse_spd_determinant(chol_colmajor_lower_amd);
check_sparse_spd_determinant(chol_colmajor_upper_amd);
check_sparse_spd_determinant(llt_colmajor_lower_amd);
check_sparse_spd_determinant(llt_colmajor_upper_amd);
check_sparse_spd_determinant(ldlt_colmajor_lower_amd);
check_sparse_spd_determinant(ldlt_colmajor_upper_amd);
check_sparse_spd_solving(ldlt_colmajor_lower_nat, (std::min)(300,EIGEN_TEST_MAX_SIZE), 1000);
check_sparse_spd_solving(ldlt_colmajor_upper_nat, (std::min)(300,EIGEN_TEST_MAX_SIZE), 1000);
check_sparse_spd_solving(ldlt_colmajor_lower_nat, (std::min)(300, EIGEN_TEST_MAX_SIZE), 1000);
check_sparse_spd_solving(ldlt_colmajor_upper_nat, (std::min)(300, EIGEN_TEST_MAX_SIZE), 1000);
}
EIGEN_DECLARE_TEST(simplicial_cholesky)
{
CALL_SUBTEST_11(( test_simplicial_cholesky_T<double, int, ColMajor>() ));
CALL_SUBTEST_12(( test_simplicial_cholesky_T<std::complex<double>, int, ColMajor>() ));
CALL_SUBTEST_13(( test_simplicial_cholesky_T<double, long int, ColMajor>() ));
CALL_SUBTEST_21(( test_simplicial_cholesky_T<double, int, RowMajor>() ));
CALL_SUBTEST_22(( test_simplicial_cholesky_T<std::complex<double>, int, RowMajor>() ));
CALL_SUBTEST_23(( test_simplicial_cholesky_T<double, long int, RowMajor>() ));
EIGEN_DECLARE_TEST(simplicial_cholesky) {
CALL_SUBTEST_11((test_simplicial_cholesky_T<double, int, ColMajor>()));
CALL_SUBTEST_12((test_simplicial_cholesky_T<std::complex<double>, int, ColMajor>()));
CALL_SUBTEST_13((test_simplicial_cholesky_T<double, long int, ColMajor>()));
CALL_SUBTEST_21((test_simplicial_cholesky_T<double, int, RowMajor>()));
CALL_SUBTEST_22((test_simplicial_cholesky_T<std::complex<double>, int, RowMajor>()));
CALL_SUBTEST_23((test_simplicial_cholesky_T<double, long int, RowMajor>()));
}