10 #ifndef EIGEN_TRANSPOSITIONS_H
11 #define EIGEN_TRANSPOSITIONS_H
45 template<
typename TranspositionType,
typename MatrixType,
int S
ide,
bool Transposed=false>
struct transposition_matrix_product_retval;
48 template<
typename Derived>
49 class TranspositionsBase
51 typedef internal::traits<Derived> Traits;
55 typedef typename Traits::IndicesType IndicesType;
56 typedef typename IndicesType::Scalar Index;
58 Derived& derived() {
return *
static_cast<Derived*
>(
this); }
59 const Derived& derived()
const {
return *
static_cast<const Derived*
>(
this); }
62 template<
typename OtherDerived>
63 Derived& operator=(
const TranspositionsBase<OtherDerived>& other)
65 indices() = other.indices();
69 #ifndef EIGEN_PARSED_BY_DOXYGEN
73 Derived& operator=(
const TranspositionsBase& other)
75 indices() = other.indices();
81 inline Index size()
const {
return indices().size(); }
84 inline const Index& coeff(Index i)
const {
return indices().coeff(i); }
86 inline Index& coeffRef(Index i) {
return indices().coeffRef(i); }
88 inline const Index& operator()(Index i)
const {
return indices()(i); }
90 inline Index& operator()(Index i) {
return indices()(i); }
92 inline const Index& operator[](Index i)
const {
return indices()(i); }
94 inline Index& operator[](Index i) {
return indices()(i); }
97 const IndicesType& indices()
const {
return derived().indices(); }
99 IndicesType& indices() {
return derived().indices(); }
102 inline void resize(
int newSize)
104 indices().resize(newSize);
110 for(
int i = 0; i < indices().size(); ++i)
136 inline Transpose<TranspositionsBase> inverse()
const
137 {
return Transpose<TranspositionsBase>(derived()); }
140 inline Transpose<TranspositionsBase> transpose()
const
141 {
return Transpose<TranspositionsBase>(derived()); }
147 template<
int SizeAtCompileTime,
int MaxSizeAtCompileTime,
typename IndexType>
148 struct traits<Transpositions<SizeAtCompileTime,MaxSizeAtCompileTime,IndexType> >
150 typedef IndexType Index;
151 typedef Matrix<Index, SizeAtCompileTime, 1, 0, MaxSizeAtCompileTime, 1> IndicesType;
155 template<
int SizeAtCompileTime,
int MaxSizeAtCompileTime,
typename IndexType>
156 class Transpositions :
public TranspositionsBase<Transpositions<SizeAtCompileTime,MaxSizeAtCompileTime,IndexType> >
158 typedef internal::traits<Transpositions> Traits;
161 typedef TranspositionsBase<Transpositions> Base;
162 typedef typename Traits::IndicesType IndicesType;
163 typedef typename IndicesType::Scalar Index;
168 template<
typename OtherDerived>
170 : m_indices(other.
indices()) {}
172 #ifndef EIGEN_PARSED_BY_DOXYGEN
179 template<
typename Other>
184 template<
typename OtherDerived>
187 return Base::operator=(other);
190 #ifndef EIGEN_PARSED_BY_DOXYGEN
196 m_indices = other.m_indices;
207 const IndicesType&
indices()
const {
return m_indices; }
213 IndicesType m_indices;
218 template<
int SizeAtCompileTime,
int MaxSizeAtCompileTime,
typename IndexType,
int _PacketAccess>
219 struct traits<Map<Transpositions<SizeAtCompileTime,MaxSizeAtCompileTime,IndexType>,_PacketAccess> >
221 typedef IndexType Index;
222 typedef Map<const Matrix<Index,SizeAtCompileTime,1,0,MaxSizeAtCompileTime,1>, _PacketAccess> IndicesType;
226 template<
int SizeAtCompileTime,
int MaxSizeAtCompileTime,
typename IndexType,
int PacketAccess>
227 class Map<Transpositions<SizeAtCompileTime,MaxSizeAtCompileTime,IndexType>,PacketAccess>
228 :
public TranspositionsBase<Map<Transpositions<SizeAtCompileTime,MaxSizeAtCompileTime,IndexType>,PacketAccess> >
230 typedef internal::traits<Map> Traits;
233 typedef TranspositionsBase<Map> Base;
234 typedef typename Traits::IndicesType IndicesType;
235 typedef typename IndicesType::Scalar Index;
237 inline Map(
const Index* indicesPtr)
238 : m_indices(indicesPtr)
241 inline Map(
const Index* indicesPtr, Index size)
242 : m_indices(indicesPtr,size)
246 template<
typename OtherDerived>
247 Map& operator=(
const TranspositionsBase<OtherDerived>& other)
249 return Base::operator=(other);
252 #ifndef EIGEN_PARSED_BY_DOXYGEN
256 Map& operator=(
const Map& other)
258 m_indices = other.m_indices;
264 const IndicesType& indices()
const {
return m_indices; }
267 IndicesType& indices() {
return m_indices; }
271 IndicesType m_indices;
275 template<
typename _IndicesType>
276 struct traits<TranspositionsWrapper<_IndicesType> >
278 typedef typename _IndicesType::Scalar Index;
279 typedef _IndicesType IndicesType;
283 template<
typename _IndicesType>
284 class TranspositionsWrapper
285 :
public TranspositionsBase<TranspositionsWrapper<_IndicesType> >
287 typedef internal::traits<TranspositionsWrapper> Traits;
290 typedef TranspositionsBase<TranspositionsWrapper> Base;
291 typedef typename Traits::IndicesType IndicesType;
292 typedef typename IndicesType::Scalar Index;
294 inline TranspositionsWrapper(IndicesType& a_indices)
295 : m_indices(a_indices)
299 template<
typename OtherDerived>
300 TranspositionsWrapper& operator=(
const TranspositionsBase<OtherDerived>& other)
302 return Base::operator=(other);
305 #ifndef EIGEN_PARSED_BY_DOXYGEN
309 TranspositionsWrapper& operator=(
const TranspositionsWrapper& other)
311 m_indices = other.m_indices;
317 const IndicesType& indices()
const {
return m_indices; }
320 IndicesType& indices() {
return m_indices; }
324 const typename IndicesType::Nested m_indices;
329 template<
typename Derived,
typename TranspositionsDerived>
330 inline const internal::transposition_matrix_product_retval<TranspositionsDerived, Derived, OnTheRight>
332 const TranspositionsBase<TranspositionsDerived> &transpositions)
334 return internal::transposition_matrix_product_retval
336 (transpositions.derived(), matrix.derived());
341 template<
typename Derived,
typename TranspositionDerived>
342 inline const internal::transposition_matrix_product_retval
343 <TranspositionDerived, Derived,
OnTheLeft>
344 operator*(
const TranspositionsBase<TranspositionDerived> &transpositions,
347 return internal::transposition_matrix_product_retval
348 <TranspositionDerived, Derived,
OnTheLeft>
349 (transpositions.derived(), matrix.derived());
354 template<
typename TranspositionType,
typename MatrixType,
int S
ide,
bool Transposed>
355 struct traits<transposition_matrix_product_retval<TranspositionType, MatrixType, Side, Transposed> >
357 typedef typename MatrixType::PlainObject ReturnType;
360 template<
typename TranspositionType,
typename MatrixType,
int S
ide,
bool Transposed>
361 struct transposition_matrix_product_retval
362 :
public ReturnByValue<transposition_matrix_product_retval<TranspositionType, MatrixType, Side, Transposed> >
364 typedef typename remove_all<typename MatrixType::Nested>::type MatrixTypeNestedCleaned;
365 typedef typename TranspositionType::Index Index;
367 transposition_matrix_product_retval(
const TranspositionType& tr,
const MatrixType& matrix)
368 : m_transpositions(tr), m_matrix(matrix)
371 inline int rows()
const {
return m_matrix.rows(); }
372 inline int cols()
const {
return m_matrix.cols(); }
374 template<
typename Dest>
inline void evalTo(Dest& dst)
const
376 const int size = m_transpositions.size();
379 if(!(is_same<MatrixTypeNestedCleaned,Dest>::value && extract_data(dst) == extract_data(m_matrix)))
382 for(
int k=(Transposed?size-1:0) ; Transposed?k>=0:k<size ; Transposed?--k:++k)
383 if((j=m_transpositions.coeff(k))!=k)
386 dst.row(k).swap(dst.row(j));
388 dst.col(k).swap(dst.col(j));
393 const TranspositionType& m_transpositions;
394 typename MatrixType::Nested m_matrix;
401 template<
typename TranspositionsDerived>
402 class Transpose<TranspositionsBase<TranspositionsDerived> >
404 typedef TranspositionsDerived TranspositionType;
405 typedef typename TranspositionType::IndicesType IndicesType;
408 Transpose(
const TranspositionType& t) : m_transpositions(t) {}
410 inline int size()
const {
return m_transpositions.size(); }
414 template<
typename Derived>
friend
415 inline const internal::transposition_matrix_product_retval<TranspositionType, Derived, OnTheRight, true>
416 operator*(
const MatrixBase<Derived>& matrix,
const Transpose& trt)
418 return internal::transposition_matrix_product_retval<TranspositionType, Derived, OnTheRight, true>(trt.m_transpositions, matrix.derived());
423 template<
typename Derived>
424 inline const internal::transposition_matrix_product_retval<TranspositionType, Derived, OnTheLeft, true>
425 operator*(
const MatrixBase<Derived>& matrix)
const
427 return internal::transposition_matrix_product_retval<TranspositionType, Derived, OnTheLeft, true>(m_transpositions, matrix.derived());
431 const TranspositionType& m_transpositions;
436 #endif // EIGEN_TRANSPOSITIONS_H
const internal::permut_matrix_product_retval< PermutationDerived, Derived, OnTheRight > operator*(const MatrixBase< Derived > &matrix, const PermutationBase< PermutationDerived > &permutation)
Definition: PermutationMatrix.h:539
Transpositions & operator=(const TranspositionsBase< OtherDerived > &other)
Definition: Transpositions.h:185
Definition: Constants.h:279
Transpositions(const TranspositionsBase< OtherDerived > &other)
Definition: Transpositions.h:169
IndicesType & indices()
Definition: Transpositions.h:209
Transpositions(Index size)
Definition: Transpositions.h:203
Map(PointerArgType dataPtr, const StrideType &a_stride=StrideType())
Definition: Map.h:139
Definition: Constants.h:277
Base class for all dense matrices, vectors, and expressions.
Definition: MatrixBase.h:48
Represents a sequence of transpositions (row/column interchange)
Definition: Transpositions.h:156
const IndicesType & indices() const
Definition: Transpositions.h:207
Transpositions(const MatrixBase< Other > &a_indices)
Definition: Transpositions.h:180