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-02-28 09:33:58 +08:00
|
|
|
#if EIGEN_GNUC_AT_LEAST(4,0) && !defined __ICC && !defined(__clang__)
|
2011-08-19 20:18:05 +08:00
|
|
|
|
|
|
|
#ifdef min
|
|
|
|
#undef min
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef max
|
|
|
|
#undef max
|
|
|
|
#endif
|
|
|
|
|
2009-01-23 20:26:32 +08:00
|
|
|
#include <tr1/unordered_map>
|
|
|
|
#define EIGEN_UNORDERED_MAP_SUPPORT
|
|
|
|
namespace std {
|
|
|
|
using std::tr1::unordered_map;
|
|
|
|
}
|
2008-11-05 21:47:55 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef EIGEN_GOOGLEHASH_SUPPORT
|
|
|
|
#include <google/sparse_hash_map>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <Eigen/Cholesky>
|
|
|
|
#include <Eigen/LU>
|
|
|
|
#include <Eigen/Sparse>
|
|
|
|
|
|
|
|
enum {
|
|
|
|
ForceNonZeroDiag = 1,
|
|
|
|
MakeLowerTriangular = 2,
|
2009-01-16 02:52:14 +08:00
|
|
|
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> void
|
2008-11-05 21:47:55 +08:00
|
|
|
initSparse(double density,
|
2011-03-22 18:58:22 +08:00
|
|
|
Matrix<Scalar,Dynamic,Dynamic,Opt1>& refMat,
|
2015-03-09 20:54:05 +08:00
|
|
|
SparseMatrix<Scalar,Opt2,StorageIndex>& sparseMat,
|
2008-11-05 21:47:55 +08:00
|
|
|
int flags = 0,
|
2015-03-09 20:54:05 +08:00
|
|
|
std::vector<Matrix<StorageIndex,2,1> >* zeroCoords = 0,
|
|
|
|
std::vector<Matrix<StorageIndex,2,1> >* nonzeroCoords = 0)
|
2008-11-05 21:47:55 +08:00
|
|
|
{
|
2015-03-09 20:54:05 +08:00
|
|
|
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));
|
2012-06-15 15:06:32 +08:00
|
|
|
sparseMat.reserve(VectorXi::Constant(IsRowMajor ? refMat.rows() : refMat.cols(), int((1.5*density)*(IsRowMajor?refMat.cols():refMat.rows()))));
|
2011-03-22 18:58:22 +08:00
|
|
|
|
2013-07-12 22:40:02 +08:00
|
|
|
for(Index j=0; j<sparseMat.outerSize(); j++)
|
2008-11-05 21:47:55 +08:00
|
|
|
{
|
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++)
|
2008-11-05 21:47:55 +08:00
|
|
|
{
|
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))
|
2013-06-11 05:40:56 +08:00
|
|
|
v = numext::real(v);
|
2010-06-02 19:32:13 +08:00
|
|
|
|
2009-01-19 23:20:45 +08:00
|
|
|
if (v!=Scalar(0))
|
|
|
|
{
|
2011-12-01 02:24:43 +08:00
|
|
|
//sparseMat.insertBackByOuterInner(j,i) = v;
|
|
|
|
sparseMat.insertByOuterInner(j,i) = v;
|
2009-01-19 23:20:45 +08:00
|
|
|
if (nonzeroCoords)
|
2015-03-09 20:54:05 +08:00
|
|
|
nonzeroCoords->push_back(Matrix<StorageIndex,2,1> (ai,aj));
|
2009-01-19 23:20:45 +08:00
|
|
|
}
|
|
|
|
else if (zeroCoords)
|
|
|
|
{
|
2015-03-09 20:54:05 +08:00
|
|
|
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;
|
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
|
|
|
}
|
|
|
|
|
2011-06-06 16:17:28 +08:00
|
|
|
template<typename Scalar,int Opt1,int Opt2,typename Index> void
|
2009-01-19 23:20:45 +08:00
|
|
|
initSparse(double density,
|
2011-03-22 18:58:22 +08:00
|
|
|
Matrix<Scalar,Dynamic,Dynamic, Opt1>& refMat,
|
2011-06-06 16:17:28 +08:00
|
|
|
DynamicSparseMatrix<Scalar, Opt2, Index>& sparseMat,
|
2009-01-19 23:20:45 +08:00
|
|
|
int flags = 0,
|
2013-07-11 05:48:26 +08:00
|
|
|
std::vector<Matrix<Index,2,1> >* zeroCoords = 0,
|
|
|
|
std::vector<Matrix<Index,2,1> >* nonzeroCoords = 0)
|
2009-01-19 23:20:45 +08:00
|
|
|
{
|
2011-06-06 16:17:28 +08:00
|
|
|
enum { IsRowMajor = DynamicSparseMatrix<Scalar,Opt2,Index>::IsRowMajor };
|
2009-05-04 22:25:12 +08:00
|
|
|
sparseMat.setZero();
|
|
|
|
sparseMat.reserve(int(refMat.rows()*refMat.cols()*density));
|
2011-03-22 18:58:22 +08:00
|
|
|
for(int j=0; j<sparseMat.outerSize(); j++)
|
2009-01-19 23:20:45 +08:00
|
|
|
{
|
2009-05-04 22:25:12 +08:00
|
|
|
sparseMat.startVec(j); // not needed for DynamicSparseMatrix
|
2011-03-22 18:58:22 +08:00
|
|
|
for(int i=0; i<sparseMat.innerSize(); i++)
|
2009-01-19 23:20:45 +08:00
|
|
|
{
|
2011-03-22 18:58:22 +08:00
|
|
|
int ai(i), aj(j);
|
|
|
|
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);
|
2009-01-19 23:20:45 +08:00
|
|
|
if ((flags&ForceNonZeroDiag) && (i==j))
|
|
|
|
{
|
2010-10-25 22:15:22 +08:00
|
|
|
v = internal::random<Scalar>()*Scalar(3.);
|
2009-01-19 23:20:45 +08:00
|
|
|
v = v*v + Scalar(5.);
|
|
|
|
}
|
2011-03-22 18:58:22 +08:00
|
|
|
if ((flags & MakeLowerTriangular) && aj>ai)
|
2009-01-19 23:20:45 +08:00
|
|
|
v = Scalar(0);
|
2011-03-22 18:58:22 +08:00
|
|
|
else if ((flags & MakeUpperTriangular) && aj<ai)
|
2009-01-19 23:20:45 +08:00
|
|
|
v = Scalar(0);
|
2010-06-02 19:32:13 +08:00
|
|
|
|
2009-01-19 23:20:45 +08:00
|
|
|
if ((flags&ForceRealDiag) && (i==j))
|
2013-06-11 05:40:56 +08:00
|
|
|
v = numext::real(v);
|
2010-06-02 19:32:13 +08:00
|
|
|
|
2008-11-05 21:47:55 +08:00
|
|
|
if (v!=Scalar(0))
|
|
|
|
{
|
2010-06-02 19:32:13 +08:00
|
|
|
sparseMat.insertBackByOuterInner(j,i) = v;
|
2008-11-05 21:47:55 +08:00
|
|
|
if (nonzeroCoords)
|
2013-07-11 05:48:26 +08:00
|
|
|
nonzeroCoords->push_back(Matrix<Index,2,1> (ai,aj));
|
2008-11-05 21:47:55 +08:00
|
|
|
}
|
|
|
|
else if (zeroCoords)
|
|
|
|
{
|
2013-07-11 05:48:26 +08:00
|
|
|
zeroCoords->push_back(Matrix<Index,2,1> (ai,aj));
|
2008-11-05 21:47:55 +08:00
|
|
|
}
|
2011-03-22 18:58:22 +08:00
|
|
|
refMat(ai,aj) = v;
|
2008-11-05 21:47:55 +08:00
|
|
|
}
|
|
|
|
}
|
2009-05-04 22:25:12 +08:00
|
|
|
sparseMat.finalize();
|
2008-11-05 21:47:55 +08:00
|
|
|
}
|
|
|
|
|
2014-02-15 16:35:23 +08:00
|
|
|
template<typename Scalar,int Options,typename Index> void
|
2009-01-08 01:01:57 +08:00
|
|
|
initSparse(double density,
|
|
|
|
Matrix<Scalar,Dynamic,1>& refVec,
|
2014-02-15 16:35:23 +08:00
|
|
|
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++)
|
2009-01-08 01:01:57 +08:00
|
|
|
{
|
2010-10-25 22:15:22 +08:00
|
|
|
Scalar v = (internal::random<double>(0,1) < density) ? internal::random<Scalar>() : Scalar(0);
|
2009-01-08 01:01:57 +08:00
|
|
|
if (v!=Scalar(0))
|
|
|
|
{
|
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
|
2013-03-06 18:58:22 +08:00
|
|
|
initSparse(double density,
|
|
|
|
Matrix<Scalar,1,Dynamic>& refVec,
|
2014-02-17 16:57:47 +08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-29 20:32:54 +08:00
|
|
|
#include <unsupported/Eigen/SparseExtra>
|
2008-11-05 21:47:55 +08:00
|
|
|
#endif // EIGEN_TESTSPARSE_H
|