| 
									
										
										
										
											2008-11-05 21:47:55 +08:00
										 |  |  | // This file is part of Eigen, a lightweight C++ template library
 | 
					
						
							| 
									
										
										
										
											2009-05-23 02:25:33 +08:00
										 |  |  | // for linear algebra.
 | 
					
						
							| 
									
										
										
										
											2008-11-05 21:47:55 +08:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2011-03-22 18:58:22 +08:00
										 |  |  | // Copyright (C) 2008-2011 Gael Guennebaud <gael.guennebaud@inria.fr>
 | 
					
						
							| 
									
										
										
										
											2008-11-05 21:47:55 +08:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2012-07-14 02:42:47 +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/.
 | 
					
						
							| 
									
										
										
										
											2008-11-05 21:47:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef EIGEN_TESTSPARSE_H
 | 
					
						
							| 
									
										
										
										
											2011-10-24 15:31:33 +08:00
										 |  |  | #define EIGEN_TESTSPARSE_H
 | 
					
						
							| 
									
										
										
										
											2008-11-05 21:47:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-28 00:36:58 +08:00
										 |  |  | #define EIGEN_YES_I_KNOW_SPARSE_MODULE_IS_NOT_STABLE_YET
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 20:26:32 +08:00
										 |  |  | #include "main.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-19 20:18:05 +08:00
										 |  |  | #ifdef min
 | 
					
						
							|  |  |  | #undef min
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef max
 | 
					
						
							|  |  |  | #undef max
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-20 20:59:34 +08:00
										 |  |  | #include <unordered_map>
 | 
					
						
							| 
									
										
										
										
											2009-01-23 20:26:32 +08:00
										 |  |  | #define EIGEN_UNORDERED_MAP_SUPPORT
 | 
					
						
							| 
									
										
										
										
											2019-02-20 20:59:34 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-05 21:47:55 +08:00
										 |  |  | #include <Eigen/Cholesky>
 | 
					
						
							|  |  |  | #include <Eigen/LU>
 | 
					
						
							|  |  |  | #include <Eigen/Sparse>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-16 02:52:14 +08:00
										 |  |  | enum { ForceNonZeroDiag = 1, MakeLowerTriangular = 2, MakeUpperTriangular = 4, ForceRealDiag = 8 }; | 
					
						
							| 
									
										
										
										
											2008-11-05 21:47:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Initializes both a sparse and dense matrix with same random values,
 | 
					
						
							|  |  |  |  * and a ratio of \a density non zero entries. | 
					
						
							|  |  |  |  * \param flags is a union of ForceNonZeroDiag, MakeLowerTriangular and MakeUpperTriangular | 
					
						
							|  |  |  |  *        allowing to control the shape of the matrix. | 
					
						
							|  |  |  |  * \param zeroCoords and nonzeroCoords allows to get the coordinate lists of the non zero, | 
					
						
							|  |  |  |  *        and zero coefficients respectively. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2015-03-09 20:54:05 +08:00
										 |  |  | template <typename Scalar, int Opt1, int Opt2, typename StorageIndex> | 
					
						
							| 
									
										
										
										
											2011-03-22 18:58:22 +08:00
										 |  |  | void initSparse(double density, Matrix<Scalar, Dynamic, Dynamic, Opt1>& refMat, | 
					
						
							| 
									
										
										
										
											2015-03-09 20:54:05 +08:00
										 |  |  |                 SparseMatrix<Scalar, Opt2, StorageIndex>& sparseMat, int flags = 0, | 
					
						
							|  |  |  |                 std::vector<Matrix<StorageIndex, 2, 1> >* zeroCoords = 0, | 
					
						
							|  |  |  |                 std::vector<Matrix<StorageIndex, 2, 1> >* nonzeroCoords = 0) { | 
					
						
							|  |  |  |   enum { IsRowMajor = SparseMatrix<Scalar, Opt2, StorageIndex>::IsRowMajor }; | 
					
						
							| 
									
										
										
										
											2009-05-04 22:25:12 +08:00
										 |  |  |   sparseMat.setZero(); | 
					
						
							| 
									
										
										
										
											2011-12-01 02:24:43 +08:00
										 |  |  |   // sparseMat.reserve(int(refMat.rows()*refMat.cols()*density));
 | 
					
						
							| 
									
										
										
										
											2022-01-27 02:16:19 +08:00
										 |  |  |   int nnz = static_cast<int>((1.5 * density) * static_cast<double>(IsRowMajor ? refMat.cols() : refMat.rows())); | 
					
						
							|  |  |  |   sparseMat.reserve(VectorXi::Constant(IsRowMajor ? refMat.rows() : refMat.cols(), nnz)); | 
					
						
							| 
									
										
										
										
											2021-11-19 02:33:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   Index insert_count = 0; | 
					
						
							| 
									
										
										
										
											2013-07-12 22:40:02 +08:00
										 |  |  |   for (Index j = 0; j < sparseMat.outerSize(); j++) { | 
					
						
							| 
									
										
										
										
											2011-12-01 02:24:43 +08:00
										 |  |  |     // sparseMat.startVec(j);
 | 
					
						
							| 
									
										
										
										
											2013-07-12 22:40:02 +08:00
										 |  |  |     for (Index i = 0; i < sparseMat.innerSize(); i++) { | 
					
						
							| 
									
										
										
										
											2014-07-08 22:47:11 +08:00
										 |  |  |       Index ai(i), aj(j); | 
					
						
							| 
									
										
										
										
											2011-03-22 18:58:22 +08:00
										 |  |  |       if (IsRowMajor) std::swap(ai, aj); | 
					
						
							| 
									
										
										
										
											2010-10-25 22:15:22 +08:00
										 |  |  |       Scalar v = (internal::random<double>(0, 1) < density) ? internal::random<Scalar>() : Scalar(0); | 
					
						
							| 
									
										
										
										
											2008-11-05 21:47:55 +08:00
										 |  |  |       if ((flags & ForceNonZeroDiag) && (i == j)) { | 
					
						
							| 
									
										
										
										
											2015-08-04 22:12:16 +08:00
										 |  |  |         // FIXME: the following is too conservative
 | 
					
						
							| 
									
										
										
										
											2010-10-25 22:15:22 +08:00
										 |  |  |         v = internal::random<Scalar>() * Scalar(3.); | 
					
						
							| 
									
										
										
										
											2015-08-04 22:12:16 +08:00
										 |  |  |         v = v * v; | 
					
						
							|  |  |  |         if (numext::real(v) > 0) | 
					
						
							|  |  |  |           v += Scalar(5); | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |           v -= Scalar(5); | 
					
						
							| 
									
										
										
										
											2008-11-05 21:47:55 +08:00
										 |  |  |       } | 
					
						
							| 
									
										
										
										
											2011-03-22 18:58:22 +08:00
										 |  |  |       if ((flags & MakeLowerTriangular) && aj > ai) | 
					
						
							| 
									
										
										
										
											2008-11-05 21:47:55 +08:00
										 |  |  |         v = Scalar(0); | 
					
						
							| 
									
										
										
										
											2011-03-22 18:58:22 +08:00
										 |  |  |       else if ((flags & MakeUpperTriangular) && aj < ai) | 
					
						
							| 
									
										
										
										
											2008-11-05 21:47:55 +08:00
										 |  |  |         v = Scalar(0); | 
					
						
							| 
									
										
										
										
											2010-06-02 19:32:13 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-16 02:52:14 +08:00
										 |  |  |       if ((flags & ForceRealDiag) && (i == j)) v = numext::real(v); | 
					
						
							| 
									
										
										
										
											2010-06-02 19:32:13 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-27 02:16:19 +08:00
										 |  |  |       if (!numext::is_exactly_zero(v)) { | 
					
						
							| 
									
										
										
										
											2011-12-01 02:24:43 +08:00
										 |  |  |         // sparseMat.insertBackByOuterInner(j,i) = v;
 | 
					
						
							|  |  |  |         sparseMat.insertByOuterInner(j, i) = v; | 
					
						
							| 
									
										
										
										
											2021-11-19 02:33:31 +08:00
										 |  |  |         ++insert_count; | 
					
						
							| 
									
										
										
										
											2009-01-19 23:20:45 +08:00
										 |  |  |         if (nonzeroCoords) nonzeroCoords->push_back(Matrix<StorageIndex, 2, 1>(ai, aj)); | 
					
						
							| 
									
										
										
										
											2015-03-09 20:54:05 +08:00
										 |  |  |       } else if (zeroCoords) { | 
					
						
							|  |  |  |         zeroCoords->push_back(Matrix<StorageIndex, 2, 1>(ai, aj)); | 
					
						
							| 
									
										
										
										
											2009-01-19 23:20:45 +08:00
										 |  |  |       } | 
					
						
							| 
									
										
										
										
											2011-03-22 18:58:22 +08:00
										 |  |  |       refMat(ai, aj) = v; | 
					
						
							| 
									
										
										
										
											2021-11-19 02:33:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |       // make sure we only insert as many as the sparse matrix supports
 | 
					
						
							|  |  |  |       if (insert_count == NumTraits<StorageIndex>::highest()) return; | 
					
						
							| 
									
										
										
										
											2009-01-19 23:20:45 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2011-12-01 02:24:43 +08:00
										 |  |  |   // sparseMat.finalize();
 | 
					
						
							| 
									
										
										
										
											2009-01-19 23:20:45 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-15 16:35:23 +08:00
										 |  |  | template <typename Scalar, int Options, typename Index> | 
					
						
							|  |  |  | void initSparse(double density, Matrix<Scalar, Dynamic, 1>& refVec, SparseVector<Scalar, Options, Index>& sparseVec, | 
					
						
							| 
									
										
										
										
											2009-01-08 01:01:57 +08:00
										 |  |  |                 std::vector<int>* zeroCoords = 0, std::vector<int>* nonzeroCoords = 0) { | 
					
						
							| 
									
										
										
										
											2009-01-12 21:01:31 +08:00
										 |  |  |   sparseVec.reserve(int(refVec.size() * density)); | 
					
						
							| 
									
										
										
										
											2009-01-08 01:01:57 +08:00
										 |  |  |   sparseVec.setZero(); | 
					
						
							| 
									
										
										
										
											2014-07-08 22:47:11 +08:00
										 |  |  |   for (int i = 0; i < refVec.size(); i++) { | 
					
						
							| 
									
										
										
										
											2010-10-25 22:15:22 +08:00
										 |  |  |     Scalar v = (internal::random<double>(0, 1) < density) ? internal::random<Scalar>() : Scalar(0); | 
					
						
							| 
									
										
										
										
											2022-01-27 02:16:19 +08:00
										 |  |  |     if (!numext::is_exactly_zero(v)) { | 
					
						
							| 
									
										
										
										
											2009-05-04 22:25:12 +08:00
										 |  |  |       sparseVec.insertBack(i) = v; | 
					
						
							| 
									
										
										
										
											2009-01-08 01:01:57 +08:00
										 |  |  |       if (nonzeroCoords) nonzeroCoords->push_back(i); | 
					
						
							|  |  |  |     } else if (zeroCoords) | 
					
						
							|  |  |  |       zeroCoords->push_back(i); | 
					
						
							|  |  |  |     refVec[i] = v; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-17 16:57:47 +08:00
										 |  |  | template <typename Scalar, int Options, typename Index> | 
					
						
							|  |  |  | void initSparse(double density, Matrix<Scalar, 1, Dynamic>& refVec, SparseVector<Scalar, Options, Index>& sparseVec, | 
					
						
							| 
									
										
										
										
											2013-03-06 18:58:22 +08:00
										 |  |  |                 std::vector<int>* zeroCoords = 0, std::vector<int>* nonzeroCoords = 0) { | 
					
						
							|  |  |  |   sparseVec.reserve(int(refVec.size() * density)); | 
					
						
							|  |  |  |   sparseVec.setZero(); | 
					
						
							|  |  |  |   for (int i = 0; i < refVec.size(); i++) { | 
					
						
							|  |  |  |     Scalar v = (internal::random<double>(0, 1) < density) ? internal::random<Scalar>() : Scalar(0); | 
					
						
							|  |  |  |     if (v != Scalar(0)) { | 
					
						
							|  |  |  |       sparseVec.insertBack(i) = v; | 
					
						
							|  |  |  |       if (nonzeroCoords) nonzeroCoords->push_back(i); | 
					
						
							|  |  |  |     } else if (zeroCoords) | 
					
						
							|  |  |  |       zeroCoords->push_back(i); | 
					
						
							|  |  |  |     refVec[i] = v; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-05 21:47:55 +08:00
										 |  |  | #endif  // EIGEN_TESTSPARSE_H
 |