Transpositions.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407
  1. // This file is part of Eigen, a lightweight C++ template library
  2. // for linear algebra.
  3. //
  4. // Copyright (C) 2010-2011 Gael Guennebaud <gael.guennebaud@inria.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. #ifndef EIGEN_TRANSPOSITIONS_H
  10. #define EIGEN_TRANSPOSITIONS_H
  11. namespace Eigen {
  12. template<typename Derived>
  13. class TranspositionsBase
  14. {
  15. typedef internal::traits<Derived> Traits;
  16. public:
  17. typedef typename Traits::IndicesType IndicesType;
  18. typedef typename IndicesType::Scalar StorageIndex;
  19. typedef Eigen::Index Index; ///< \deprecated since Eigen 3.3
  20. Derived& derived() { return *static_cast<Derived*>(this); }
  21. const Derived& derived() const { return *static_cast<const Derived*>(this); }
  22. /** Copies the \a other transpositions into \c *this */
  23. template<typename OtherDerived>
  24. Derived& operator=(const TranspositionsBase<OtherDerived>& other)
  25. {
  26. indices() = other.indices();
  27. return derived();
  28. }
  29. #ifndef EIGEN_PARSED_BY_DOXYGEN
  30. /** This is a special case of the templated operator=. Its purpose is to
  31. * prevent a default operator= from hiding the templated operator=.
  32. */
  33. Derived& operator=(const TranspositionsBase& other)
  34. {
  35. indices() = other.indices();
  36. return derived();
  37. }
  38. #endif
  39. /** \returns the number of transpositions */
  40. Index size() const { return indices().size(); }
  41. /** \returns the number of rows of the equivalent permutation matrix */
  42. Index rows() const { return indices().size(); }
  43. /** \returns the number of columns of the equivalent permutation matrix */
  44. Index cols() const { return indices().size(); }
  45. /** Direct access to the underlying index vector */
  46. inline const StorageIndex& coeff(Index i) const { return indices().coeff(i); }
  47. /** Direct access to the underlying index vector */
  48. inline StorageIndex& coeffRef(Index i) { return indices().coeffRef(i); }
  49. /** Direct access to the underlying index vector */
  50. inline const StorageIndex& operator()(Index i) const { return indices()(i); }
  51. /** Direct access to the underlying index vector */
  52. inline StorageIndex& operator()(Index i) { return indices()(i); }
  53. /** Direct access to the underlying index vector */
  54. inline const StorageIndex& operator[](Index i) const { return indices()(i); }
  55. /** Direct access to the underlying index vector */
  56. inline StorageIndex& operator[](Index i) { return indices()(i); }
  57. /** const version of indices(). */
  58. const IndicesType& indices() const { return derived().indices(); }
  59. /** \returns a reference to the stored array representing the transpositions. */
  60. IndicesType& indices() { return derived().indices(); }
  61. /** Resizes to given size. */
  62. inline void resize(Index newSize)
  63. {
  64. indices().resize(newSize);
  65. }
  66. /** Sets \c *this to represents an identity transformation */
  67. void setIdentity()
  68. {
  69. for(StorageIndex i = 0; i < indices().size(); ++i)
  70. coeffRef(i) = i;
  71. }
  72. // FIXME: do we want such methods ?
  73. // might be usefull when the target matrix expression is complex, e.g.:
  74. // object.matrix().block(..,..,..,..) = trans * object.matrix().block(..,..,..,..);
  75. /*
  76. template<typename MatrixType>
  77. void applyForwardToRows(MatrixType& mat) const
  78. {
  79. for(Index k=0 ; k<size() ; ++k)
  80. if(m_indices(k)!=k)
  81. mat.row(k).swap(mat.row(m_indices(k)));
  82. }
  83. template<typename MatrixType>
  84. void applyBackwardToRows(MatrixType& mat) const
  85. {
  86. for(Index k=size()-1 ; k>=0 ; --k)
  87. if(m_indices(k)!=k)
  88. mat.row(k).swap(mat.row(m_indices(k)));
  89. }
  90. */
  91. /** \returns the inverse transformation */
  92. inline Transpose<TranspositionsBase> inverse() const
  93. { return Transpose<TranspositionsBase>(derived()); }
  94. /** \returns the tranpose transformation */
  95. inline Transpose<TranspositionsBase> transpose() const
  96. { return Transpose<TranspositionsBase>(derived()); }
  97. protected:
  98. };
  99. namespace internal {
  100. template<int SizeAtCompileTime, int MaxSizeAtCompileTime, typename _StorageIndex>
  101. struct traits<Transpositions<SizeAtCompileTime,MaxSizeAtCompileTime,_StorageIndex> >
  102. : traits<PermutationMatrix<SizeAtCompileTime,MaxSizeAtCompileTime,_StorageIndex> >
  103. {
  104. typedef Matrix<_StorageIndex, SizeAtCompileTime, 1, 0, MaxSizeAtCompileTime, 1> IndicesType;
  105. typedef TranspositionsStorage StorageKind;
  106. };
  107. }
  108. /** \class Transpositions
  109. * \ingroup Core_Module
  110. *
  111. * \brief Represents a sequence of transpositions (row/column interchange)
  112. *
  113. * \tparam SizeAtCompileTime the number of transpositions, or Dynamic
  114. * \tparam MaxSizeAtCompileTime the maximum number of transpositions, or Dynamic. This optional parameter defaults to SizeAtCompileTime. Most of the time, you should not have to specify it.
  115. *
  116. * This class represents a permutation transformation as a sequence of \em n transpositions
  117. * \f$[T_{n-1} \ldots T_{i} \ldots T_{0}]\f$. It is internally stored as a vector of integers \c indices.
  118. * Each transposition \f$ T_{i} \f$ applied on the left of a matrix (\f$ T_{i} M\f$) interchanges
  119. * the rows \c i and \c indices[i] of the matrix \c M.
  120. * A transposition applied on the right (e.g., \f$ M T_{i}\f$) yields a column interchange.
  121. *
  122. * Compared to the class PermutationMatrix, such a sequence of transpositions is what is
  123. * computed during a decomposition with pivoting, and it is faster when applying the permutation in-place.
  124. *
  125. * To apply a sequence of transpositions to a matrix, simply use the operator * as in the following example:
  126. * \code
  127. * Transpositions tr;
  128. * MatrixXf mat;
  129. * mat = tr * mat;
  130. * \endcode
  131. * In this example, we detect that the matrix appears on both side, and so the transpositions
  132. * are applied in-place without any temporary or extra copy.
  133. *
  134. * \sa class PermutationMatrix
  135. */
  136. template<int SizeAtCompileTime, int MaxSizeAtCompileTime, typename _StorageIndex>
  137. class Transpositions : public TranspositionsBase<Transpositions<SizeAtCompileTime,MaxSizeAtCompileTime,_StorageIndex> >
  138. {
  139. typedef internal::traits<Transpositions> Traits;
  140. public:
  141. typedef TranspositionsBase<Transpositions> Base;
  142. typedef typename Traits::IndicesType IndicesType;
  143. typedef typename IndicesType::Scalar StorageIndex;
  144. inline Transpositions() {}
  145. /** Copy constructor. */
  146. template<typename OtherDerived>
  147. inline Transpositions(const TranspositionsBase<OtherDerived>& other)
  148. : m_indices(other.indices()) {}
  149. #ifndef EIGEN_PARSED_BY_DOXYGEN
  150. /** Standard copy constructor. Defined only to prevent a default copy constructor
  151. * from hiding the other templated constructor */
  152. inline Transpositions(const Transpositions& other) : m_indices(other.indices()) {}
  153. #endif
  154. /** Generic constructor from expression of the transposition indices. */
  155. template<typename Other>
  156. explicit inline Transpositions(const MatrixBase<Other>& indices) : m_indices(indices)
  157. {}
  158. /** Copies the \a other transpositions into \c *this */
  159. template<typename OtherDerived>
  160. Transpositions& operator=(const TranspositionsBase<OtherDerived>& other)
  161. {
  162. return Base::operator=(other);
  163. }
  164. #ifndef EIGEN_PARSED_BY_DOXYGEN
  165. /** This is a special case of the templated operator=. Its purpose is to
  166. * prevent a default operator= from hiding the templated operator=.
  167. */
  168. Transpositions& operator=(const Transpositions& other)
  169. {
  170. m_indices = other.m_indices;
  171. return *this;
  172. }
  173. #endif
  174. /** Constructs an uninitialized permutation matrix of given size.
  175. */
  176. inline Transpositions(Index size) : m_indices(size)
  177. {}
  178. /** const version of indices(). */
  179. const IndicesType& indices() const { return m_indices; }
  180. /** \returns a reference to the stored array representing the transpositions. */
  181. IndicesType& indices() { return m_indices; }
  182. protected:
  183. IndicesType m_indices;
  184. };
  185. namespace internal {
  186. template<int SizeAtCompileTime, int MaxSizeAtCompileTime, typename _StorageIndex, int _PacketAccess>
  187. struct traits<Map<Transpositions<SizeAtCompileTime,MaxSizeAtCompileTime,_StorageIndex>,_PacketAccess> >
  188. : traits<PermutationMatrix<SizeAtCompileTime,MaxSizeAtCompileTime,_StorageIndex> >
  189. {
  190. typedef Map<const Matrix<_StorageIndex,SizeAtCompileTime,1,0,MaxSizeAtCompileTime,1>, _PacketAccess> IndicesType;
  191. typedef _StorageIndex StorageIndex;
  192. typedef TranspositionsStorage StorageKind;
  193. };
  194. }
  195. template<int SizeAtCompileTime, int MaxSizeAtCompileTime, typename _StorageIndex, int PacketAccess>
  196. class Map<Transpositions<SizeAtCompileTime,MaxSizeAtCompileTime,_StorageIndex>,PacketAccess>
  197. : public TranspositionsBase<Map<Transpositions<SizeAtCompileTime,MaxSizeAtCompileTime,_StorageIndex>,PacketAccess> >
  198. {
  199. typedef internal::traits<Map> Traits;
  200. public:
  201. typedef TranspositionsBase<Map> Base;
  202. typedef typename Traits::IndicesType IndicesType;
  203. typedef typename IndicesType::Scalar StorageIndex;
  204. explicit inline Map(const StorageIndex* indicesPtr)
  205. : m_indices(indicesPtr)
  206. {}
  207. inline Map(const StorageIndex* indicesPtr, Index size)
  208. : m_indices(indicesPtr,size)
  209. {}
  210. /** Copies the \a other transpositions into \c *this */
  211. template<typename OtherDerived>
  212. Map& operator=(const TranspositionsBase<OtherDerived>& other)
  213. {
  214. return Base::operator=(other);
  215. }
  216. #ifndef EIGEN_PARSED_BY_DOXYGEN
  217. /** This is a special case of the templated operator=. Its purpose is to
  218. * prevent a default operator= from hiding the templated operator=.
  219. */
  220. Map& operator=(const Map& other)
  221. {
  222. m_indices = other.m_indices;
  223. return *this;
  224. }
  225. #endif
  226. /** const version of indices(). */
  227. const IndicesType& indices() const { return m_indices; }
  228. /** \returns a reference to the stored array representing the transpositions. */
  229. IndicesType& indices() { return m_indices; }
  230. protected:
  231. IndicesType m_indices;
  232. };
  233. namespace internal {
  234. template<typename _IndicesType>
  235. struct traits<TranspositionsWrapper<_IndicesType> >
  236. : traits<PermutationWrapper<_IndicesType> >
  237. {
  238. typedef TranspositionsStorage StorageKind;
  239. };
  240. }
  241. template<typename _IndicesType>
  242. class TranspositionsWrapper
  243. : public TranspositionsBase<TranspositionsWrapper<_IndicesType> >
  244. {
  245. typedef internal::traits<TranspositionsWrapper> Traits;
  246. public:
  247. typedef TranspositionsBase<TranspositionsWrapper> Base;
  248. typedef typename Traits::IndicesType IndicesType;
  249. typedef typename IndicesType::Scalar StorageIndex;
  250. explicit inline TranspositionsWrapper(IndicesType& indices)
  251. : m_indices(indices)
  252. {}
  253. /** Copies the \a other transpositions into \c *this */
  254. template<typename OtherDerived>
  255. TranspositionsWrapper& operator=(const TranspositionsBase<OtherDerived>& other)
  256. {
  257. return Base::operator=(other);
  258. }
  259. #ifndef EIGEN_PARSED_BY_DOXYGEN
  260. /** This is a special case of the templated operator=. Its purpose is to
  261. * prevent a default operator= from hiding the templated operator=.
  262. */
  263. TranspositionsWrapper& operator=(const TranspositionsWrapper& other)
  264. {
  265. m_indices = other.m_indices;
  266. return *this;
  267. }
  268. #endif
  269. /** const version of indices(). */
  270. const IndicesType& indices() const { return m_indices; }
  271. /** \returns a reference to the stored array representing the transpositions. */
  272. IndicesType& indices() { return m_indices; }
  273. protected:
  274. typename IndicesType::Nested m_indices;
  275. };
  276. /** \returns the \a matrix with the \a transpositions applied to the columns.
  277. */
  278. template<typename MatrixDerived, typename TranspositionsDerived>
  279. EIGEN_DEVICE_FUNC
  280. const Product<MatrixDerived, TranspositionsDerived, AliasFreeProduct>
  281. operator*(const MatrixBase<MatrixDerived> &matrix,
  282. const TranspositionsBase<TranspositionsDerived>& transpositions)
  283. {
  284. return Product<MatrixDerived, TranspositionsDerived, AliasFreeProduct>
  285. (matrix.derived(), transpositions.derived());
  286. }
  287. /** \returns the \a matrix with the \a transpositions applied to the rows.
  288. */
  289. template<typename TranspositionsDerived, typename MatrixDerived>
  290. EIGEN_DEVICE_FUNC
  291. const Product<TranspositionsDerived, MatrixDerived, AliasFreeProduct>
  292. operator*(const TranspositionsBase<TranspositionsDerived> &transpositions,
  293. const MatrixBase<MatrixDerived>& matrix)
  294. {
  295. return Product<TranspositionsDerived, MatrixDerived, AliasFreeProduct>
  296. (transpositions.derived(), matrix.derived());
  297. }
  298. // Template partial specialization for transposed/inverse transpositions
  299. namespace internal {
  300. template<typename Derived>
  301. struct traits<Transpose<TranspositionsBase<Derived> > >
  302. : traits<Derived>
  303. {};
  304. } // end namespace internal
  305. template<typename TranspositionsDerived>
  306. class Transpose<TranspositionsBase<TranspositionsDerived> >
  307. {
  308. typedef TranspositionsDerived TranspositionType;
  309. typedef typename TranspositionType::IndicesType IndicesType;
  310. public:
  311. explicit Transpose(const TranspositionType& t) : m_transpositions(t) {}
  312. Index size() const { return m_transpositions.size(); }
  313. Index rows() const { return m_transpositions.size(); }
  314. Index cols() const { return m_transpositions.size(); }
  315. /** \returns the \a matrix with the inverse transpositions applied to the columns.
  316. */
  317. template<typename OtherDerived> friend
  318. const Product<OtherDerived, Transpose, AliasFreeProduct>
  319. operator*(const MatrixBase<OtherDerived>& matrix, const Transpose& trt)
  320. {
  321. return Product<OtherDerived, Transpose, AliasFreeProduct>(matrix.derived(), trt);
  322. }
  323. /** \returns the \a matrix with the inverse transpositions applied to the rows.
  324. */
  325. template<typename OtherDerived>
  326. const Product<Transpose, OtherDerived, AliasFreeProduct>
  327. operator*(const MatrixBase<OtherDerived>& matrix) const
  328. {
  329. return Product<Transpose, OtherDerived, AliasFreeProduct>(*this, matrix.derived());
  330. }
  331. const TranspositionType& nestedExpression() const { return m_transpositions; }
  332. protected:
  333. const TranspositionType& m_transpositions;
  334. };
  335. } // end namespace Eigen
  336. #endif // EIGEN_TRANSPOSITIONS_H