| 
									
										
										
										
											2013-01-21 22:36:18 +08:00
										 |  |  | // This file is part of Eigen, a lightweight C++ template library
 | 
					
						
							|  |  |  | // for linear algebra.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Copyright (C) 2012 Désiré Nuentsa-Wakam <desire.nuentsa_wakam@inria.fr>
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											2015-10-23 16:36:33 +08:00
										 |  |  | // This Source Code Form is subject to the terms of the Mozilla
 | 
					
						
							|  |  |  | // Public License v. 2.0. If a copy of the MPL was not distributed
 | 
					
						
							|  |  |  | // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-21 22:36:18 +08:00
										 |  |  | #include "sparse_solver.h"
 | 
					
						
							|  |  |  | #include <Eigen/SparseLU>
 | 
					
						
							| 
									
										
										
										
											2013-01-21 22:43:15 +08:00
										 |  |  | #include <Eigen/MetisSupport>
 | 
					
						
							| 
									
										
										
										
											2013-01-21 22:36:18 +08:00
										 |  |  | #include <unsupported/Eigen/SparseExtra>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <typename T> | 
					
						
							|  |  |  | void test_metis_T() { | 
					
						
							| 
									
										
										
										
											2013-01-21 22:43:15 +08:00
										 |  |  |   SparseLU<SparseMatrix<T, ColMajor>, MetisOrdering<int> > sparselu_metis; | 
					
						
							| 
									
										
										
										
											2013-01-21 22:36:18 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-17 20:46:15 +08:00
										 |  |  |   check_sparse_square_solving(sparselu_metis); | 
					
						
							| 
									
										
										
										
											2013-01-21 22:36:18 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2023-12-06 05:22:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-21 22:36:18 +08:00
										 |  |  | EIGEN_DECLARE_TEST(metis_support) { CALL_SUBTEST_1(test_metis_T<double>()); } |