OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PermutationBase
(Results
1 - 3
of
3
) sorted by null
/external/eigen/Eigen/src/SparseCore/
SparsePermutation.h
111
inline const internal::permut_sparsematrix_product_retval<
PermutationBase
<PermDerived>, SparseDerived, OnTheRight, false>
112
operator*(const SparseMatrixBase<SparseDerived>& matrix, const
PermutationBase
<PermDerived>& perm)
114
return internal::permut_sparsematrix_product_retval<
PermutationBase
<PermDerived>, SparseDerived, OnTheRight, false>(perm, matrix.derived());
120
inline const internal::permut_sparsematrix_product_retval<
PermutationBase
<PermDerived>, SparseDerived, OnTheLeft, false>
121
operator*( const
PermutationBase
<PermDerived>& perm, const SparseMatrixBase<SparseDerived>& matrix)
123
return internal::permut_sparsematrix_product_retval<
PermutationBase
<PermDerived>, SparseDerived, OnTheLeft, false>(perm, matrix.derived());
131
inline const internal::permut_sparsematrix_product_retval<
PermutationBase
<PermDerived>, SparseDerived, OnTheRight, true>
132
operator*(const SparseMatrixBase<SparseDerived>& matrix, const Transpose<
PermutationBase
<PermDerived> >& tperm)
134
return internal::permut_sparsematrix_product_retval<
PermutationBase
<PermDerived>, SparseDerived, OnTheRight, true>(tperm.nestedPermutation(), matrix.derived());
140
inline const internal::permut_sparsematrix_product_retval<
PermutationBase
<PermDerived>, SparseDerived, OnTheLeft, true
[
all
...]
/external/eigen/Eigen/src/Core/
PermutationMatrix.h
18
/** \class
PermutationBase
53
class
PermutationBase
: public EigenBase<Derived>
80
Derived& operator=(const
PermutationBase
<OtherDerived>& other)
100
Derived& operator=(const
PermutationBase
& other)
201
inline Transpose<
PermutationBase
> inverse() const
207
inline Transpose<
PermutationBase
> transpose() const
216
void assignTranspose(const
PermutationBase
<OtherDerived>& other)
235
inline PlainPermutationType operator*(const
PermutationBase
<Other>& other) const
243
inline PlainPermutationType operator*(const Transpose<
PermutationBase
<Other> >& other) const
251
inline PlainPermutationType operator*(const Transpose<
PermutationBase
<Other> >& other, const PermutationBase& perm
[
all
...]
/external/eigen/Eigen/src/Core/util/
ForwardDeclarations.h
103
template<typename Derived> class
PermutationBase
;
Completed in 60 milliseconds