Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef EIGEN_ORDERING_H
00012 #define EIGEN_ORDERING_H
00013
00014 namespace Eigen {
00015
00016 #include "Eigen_Colamd.h"
00017
00018 namespace internal {
00019
00025 template<typename MatrixType>
00026 void ordering_helper_at_plus_a(const MatrixType& mat, MatrixType& symmat)
00027 {
00028 MatrixType C;
00029 C = mat.transpose();
00030 for (int i = 0; i < C.rows(); i++)
00031 {
00032 for (typename MatrixType::InnerIterator it(C, i); it; ++it)
00033 it.valueRef() = 0.0;
00034 }
00035 symmat = C + mat;
00036 }
00037
00038 }
00039
00040 #ifndef EIGEN_MPL2_ONLY
00041
00050 template <typename Index>
00051 class AMDOrdering
00052 {
00053 public:
00054 typedef PermutationMatrix<Dynamic, Dynamic, Index> PermutationType;
00055
00059 template <typename MatrixType>
00060 void operator()(const MatrixType& mat, PermutationType& perm)
00061 {
00062
00063 SparseMatrix<typename MatrixType::Scalar, ColMajor, Index> symm;
00064 internal::ordering_helper_at_plus_a(mat,symm);
00065
00066
00067
00068 internal::minimum_degree_ordering(symm, perm);
00069 }
00070
00072 template <typename SrcType, unsigned int SrcUpLo>
00073 void operator()(const SparseSelfAdjointView<SrcType, SrcUpLo>& mat, PermutationType& perm)
00074 {
00075 SparseMatrix<typename SrcType::Scalar, ColMajor, Index> C; C = mat;
00076
00077
00078
00079 internal::minimum_degree_ordering(C, perm);
00080 }
00081 };
00082
00083 #endif // EIGEN_MPL2_ONLY
00084
00093 template <typename Index>
00094 class NaturalOrdering
00095 {
00096 public:
00097 typedef PermutationMatrix<Dynamic, Dynamic, Index> PermutationType;
00098
00100 template <typename MatrixType>
00101 void operator()(const MatrixType& , PermutationType& perm)
00102 {
00103 perm.resize(0);
00104 }
00105
00106 };
00107
00114 template<typename Index>
00115 class COLAMDOrdering
00116 {
00117 public:
00118 typedef PermutationMatrix<Dynamic, Dynamic, Index> PermutationType;
00119 typedef Matrix<Index, Dynamic, 1> IndexVector;
00120
00122 template <typename MatrixType>
00123 void operator() (const MatrixType& mat, PermutationType& perm)
00124 {
00125 Index m = mat.rows();
00126 Index n = mat.cols();
00127 Index nnz = mat.nonZeros();
00128
00129 Index Alen = internal::colamd_recommended(nnz, m, n);
00130
00131 double knobs [COLAMD_KNOBS];
00132 Index stats [COLAMD_STATS];
00133 internal::colamd_set_defaults(knobs);
00134
00135 Index info;
00136 IndexVector p(n+1), A(Alen);
00137 for(Index i=0; i <= n; i++) p(i) = mat.outerIndexPtr()[i];
00138 for(Index i=0; i < nnz; i++) A(i) = mat.innerIndexPtr()[i];
00139
00140 info = internal::colamd(m, n, Alen, A.data(), p.data(), knobs, stats);
00141 eigen_assert( info && "COLAMD failed " );
00142
00143 perm.resize(n);
00144 for (Index i = 0; i < n; i++) perm.indices()(p(i)) = i;
00145 }
00146 };
00147
00148 }
00149
00150 #endif