1// This file is part of Eigen, a lightweight C++ template library
2// for linear algebra.
3//
4// Copyright (C) 2011 Gael Guennebaud <g.gael@free.fr>
5//
6// This Source Code Form is subject to the terms of the Mozilla
7// Public License v. 2.0. If a copy of the MPL was not distributed
8// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
9
10#include "sparse_solver.h"
11
12#include <Eigen/UmfPackSupport>
13
14template<typename T> void test_umfpack_support_T()
15{
16  UmfPackLU<SparseMatrix<T, ColMajor> > umfpack_colmajor;
17  UmfPackLU<SparseMatrix<T, RowMajor> > umfpack_rowmajor;
18
19  check_sparse_square_solving(umfpack_colmajor);
20  check_sparse_square_solving(umfpack_rowmajor);
21
22  check_sparse_square_determinant(umfpack_colmajor);
23  check_sparse_square_determinant(umfpack_rowmajor);
24}
25
26void test_umfpack_support()
27{
28  CALL_SUBTEST_1(test_umfpack_support_T<double>());
29  CALL_SUBTEST_2(test_umfpack_support_T<std::complex<double> >());
30}
31
32