29 #ifndef HPP_CONSTRAINTS_MATRIX_VIEW_HH
30 #define HPP_CONSTRAINTS_MATRIX_VIEW_HH
34 #include <hpp/pinocchio/util.hh>
35 #include <hpp/util/indent.hh>
39 #define HPP_EIGEN_USE_EVALUATOR EIGEN_VERSION_AT_LEAST(3, 2, 92)
65 template <
typename Derived>
67 const Eigen::ArrayBase<Derived>& array);
123 template <
typename ArgType,
int _Rows,
int _Cols,
bool _allRows,
bool _allCols>
136 template <
bool _allRows = false,
bool _allCols = false>
141 template <
bool _allRows = false,
bool _allCols = false>
145 template <
bool condition>
147 template <
class Then,
class Else>
148 static constexpr
inline Then&
rr(Then& f, Else&) {
151 template <
class Then,
class Else>
152 static constexpr
inline Then
pp(Then f, Else) {
158 template <
class Then,
class Else>
159 static constexpr
inline Else&
rr(Then&, Else& s) {
162 template <
class Then,
class Else>
163 static constexpr
inline Else
pp(Then, Else s) {
171 template <
typename In_t>
173 template <
typename In0_t,
typename In1_t>
179 template <
bool _allRows,
bool _allCols>
181 enum { AllRows = _allRows, AllCols = _allCols };
190 template <
bool _allRows,
bool _allCols>
192 enum { AllRows = _allRows, AllCols = _allCols };
201 template <
typename ArgType,
int _Rows,
int _Cols,
bool _allRows,
bool _allCols>
203 #if HPP_EIGEN_USE_EVALUATOR
204 typedef typename ArgType::StorageIndex StorageIndex;
206 typedef typename ArgType::Index
Index;
209 typedef typename traits<ArgType>::XprKind
XprKind;
212 #if !HPP_EIGEN_USE_EVALUATOR
213 CoeffReadCost = ArgType::CoeffReadCost,
215 Flags = ~PacketAccessBit & ~DirectAccessBit & ~ActualPacketAccessBit &
216 ~LinearAccessBit & ArgType::Flags,
217 RowsAtCompileTime = (_allRows ? ArgType::RowsAtCompileTime : _Rows),
218 ColsAtCompileTime = (_allCols ? ArgType::ColsAtCompileTime : _Cols),
219 MaxRowsAtCompileTime = ArgType::MaxRowsAtCompileTime,
220 MaxColsAtCompileTime = ArgType::MaxColsAtCompileTime
224 #if HPP_EIGEN_USE_EVALUATOR
225 template <
typename Derived,
typename ArgType,
int _Rows,
int _Cols,
226 bool _allRows,
bool _allCols,
typename Functor,
typename Scalar>
227 struct Assignment<Derived,
229 Functor, Dense2Dense, Scalar> {
232 static EIGEN_STRONG_INLINE
void run(Derived& dst,
const OtherDerived& src,
233 const Functor& func) {
234 dst.resize(src.rows(), src.cols());
235 typedef Block<Derived> BlockDerived;
236 typedef Assignment<BlockDerived,
typename OtherDerived::BlockConstXprType,
239 for (
typename OtherDerived::block_iterator b(src); b.valid(); ++b) {
240 BlockDerived bdst(dst.block(b.ro(), b.co(), b.rs(), b.cs()));
241 AssignmentType::run(bdst, src._block(b), func);
246 template <
typename Derived,
typename ArgType,
int _Rows,
int _Cols,
247 bool _allRows,
bool _allCols>
248 struct assign_selector<
249 Derived,
MatrixBlockView<ArgType, _Rows, _Cols, _allRows, _allCols>, false,
253 static EIGEN_STRONG_INLINE Derived&
run(Derived& dst,
258 template <
typename ActualDerived,
typename ActualOtherDerived>
259 static EIGEN_STRONG_INLINE Derived&
evalTo(ActualDerived& dst,
260 const ActualOtherDerived& other) {
265 template <
typename Derived,
typename ArgType,
int _Rows,
int _Cols,
266 bool _allRows,
bool _allCols>
267 struct assign_selector<
268 Derived,
MatrixBlockView<ArgType, _Rows, _Cols, _allRows, _allCols>, false,
272 static EIGEN_STRONG_INLINE Derived&
run(Derived& dst,
274 other.
writeTo(dst.transpose());
277 template <
typename ActualDerived,
typename ActualOtherDerived>
278 static EIGEN_STRONG_INLINE Derived&
evalTo(ActualDerived& dst,
279 const ActualOtherDerived& other) {
280 Transpose<ActualDerived> dstTrans(dst);
281 other.evalTo(dstTrans);
287 template <
typename Src,
typename Dst>
289 template <
typename Src,
typename _ArgType,
int _Rows,
int _Cols,
bool _allRows,
295 static void run(
const Src& src,
Dst& dst) {
297 dst.
_block(b) = src.block(b.ro(), b.co(), b.rs(), b.cs());
300 template <
typename _ArgType,
int _Rows,
int _Cols,
bool _allRows,
bool _allCols,
306 static void run(
const Src& src, Dst& dst) {
308 dst.block(b.ro(), b.co(), b.rs(), b.cs()) = src.
_block(b);
311 template <
typename _ArgType,
int _Rows,
int _Cols,
bool _allRows,
bool _allCols,
312 typename _ArgType2,
int _Rows2,
int _Cols2,
bool _allRows2,
331 template <
typename ReturnType,
typename View,
bool AllRows = View::AllRows,
332 bool AllCols = View::AllCols>
335 template <
typename Derived>
338 return ReturnType(
d, r, c, rs, cs);
341 template <
typename ReturnType,
typename View>
344 template <
typename Derived>
347 return d.middleRows(r, rs);
350 template <
typename ReturnType,
typename View>
353 template <
typename Derived>
356 return d.middleCols(c, cs);
361 template <
typename BlockIndexType>
362 static void run(std::ostream&,
const BlockIndexType&) {}
365 template <
typename BlockIndexType>
366 static void run(std::ostream& os,
const BlockIndexType& bi) {
367 for (std::size_t i = 0; i < bi.size(); ++i)
368 os <<
"[ " << bi[i].first <<
", " << bi[i].second <<
"], ";
372 #if HPP_EIGEN_USE_EVALUATOR
373 template <
typename ArgType,
int _Rows,
int _Cols,
bool _allRows,
bool _allCols>
374 struct unary_evaluator<
377 MatrixBlockView<ArgType, _Rows, _Cols, _allRows, _allCols> > {
381 CoeffReadCost = evaluator<ArgType>::CoeffReadCost,
382 Flags = ~PacketAccessBit & ~DirectAccessBit & ~ActualPacketAccessBit &
383 ~LinearAccessBit & ArgType::Flags,
386 EIGEN_DEVICE_FUNC
explicit unary_evaluator(
const XprType& view)
389 const XprType& m_view;
394 #define EIGEN_MATRIX_BLOCKS_PUBLIC_INTERFACE(Derived) \
395 enum { AllRows = _allRows, AllCols = _allCols }; \
396 typedef MatrixBlocksBase<Derived> Base; \
397 typedef typename Base::size_type size_type; \
398 typedef typename Base::segments_t segments_t; \
399 typedef typename Base::segment_t segment_t; \
400 typedef typename Base::RowIndices_t RowIndices_t; \
401 typedef typename Base::ColIndices_t ColIndices_t;
406 template <
typename Derived>
424 template <
typename MatrixType,
int _Rows = MatrixType::RowsAtCompileTime,
425 int _Cols = MatrixType::ColsAtCompileTime>
430 Derived
const&
derived()
const {
return static_cast<Derived const&
>(*this); }
431 Derived&
derived() {
return static_cast<Derived&
>(*this); }
437 template <
typename MatrixType>
439 const MatrixBase<MatrixType>& other)
const {
440 MatrixType& o =
const_cast<MatrixBase<MatrixType>&
>(other).
derived();
441 if (Derived::OneDimension)
452 template <
typename MatrixType>
454 const MatrixBase<MatrixType>& other)
const {
455 if (Derived::OneDimension)
545 template <
bool _allRows,
bool _allCols>
601 :
m_nbRows(_allRows ? 0 : idx.second),
602 m_nbCols(_allCols ? 0 : idx.second),
607 template <
typename MBDerived>
613 EIGEN_STATIC_ASSERT((
bool(
AllRows) ==
bool(MBDerived::AllRows)) &&
614 (
bool(
AllCols) ==
bool(MBDerived::AllCols)),
615 YOU_MIXED_MATRICES_OF_DIFFERENT_SIZES);
659 template <
bool Sort,
bool Shrink,
bool Cardinal>
668 template <
bool Sort,
bool Shrink,
bool Cardinal>
689 template <
bool Sort,
bool Shrink,
bool Cardinal>
691 update<Sort, Shrink, Cardinal>(
701 template <
bool Sort,
bool Shrink,
bool Cardinal>
710 template <
bool _allRows,
bool _allCols>
711 class MatrixBlocksRef
712 :
public MatrixBlocksBase<MatrixBlocksRef<_allRows, _allCols> > {
720 MatrixBlocksRef(
const size_type& nbRows,
const RowIndices_t& rows,
721 const size_type& nbCols,
const ColIndices_t& cols)
722 : m_nbRows(nbRows), m_nbCols(nbCols), m_rows(rows), m_cols(cols) {}
725 template <
typename Derived1,
typename Derived2>
726 MatrixBlocksRef(
const MatrixBlocksBase<Derived1>& rows,
727 const MatrixBlocksBase<Derived2>& cols)
728 : m_nbRows(rows.nbIndices()),
729 m_nbCols(cols.nbIndices()),
730 m_rows(rows.indices()),
731 m_cols(cols.indices()) {
733 bool(Derived1::OneDimension) &&
bool(Derived2::OneDimension),
734 YOU_MIXED_MATRICES_OF_DIFFERENT_SIZES);
743 : m_nbRows(_allRows ? 0 : nidx),
744 m_nbCols(_allCols ? 0 : nidx),
749 MatrixBlocksRef(
const MatrixBlocksRef& other)
751 m_nbRows(other.nbRows()),
752 m_nbCols(other.nbCols()),
753 m_rows(other.rows()),
754 m_cols(other.cols()) {}
758 inline const RowIndices_t& rows()
const {
return m_rows; }
762 inline const ColIndices_t& cols()
const {
return m_cols; }
766 inline const size_type& nbRows()
const {
return m_nbRows; }
770 inline const size_type& nbCols()
const {
return m_nbCols; }
778 template <
typename Derived>
782 typename internal::conditional<Derived::AllRows,
786 typename internal::conditional<Derived::AllCols,
789 if (!Derived::AllRows) {
791 row_printer::run(os, mbi.
rows());
792 if (!Derived::AllCols) os << hpp::iendl;
794 if (!Derived::AllCols) {
796 col_printer::run(os, mbi.
cols());
830 template <
typename _ArgType,
int _Rows = _ArgType::RowsAtCompileTime,
831 int _Cols = _ArgType::ColsAtCompileTime,
bool _allRows =
false,
832 bool _allCols =
false>
835 MatrixBlockView<_ArgType, _Rows, _Cols, _allRows, _allCols> > {
842 internal::variable_if_dynamic<
size_type, (_allRows ? 0 : Dynamic)>
_ro;
843 internal::variable_if_dynamic<
size_type, (_allCols ? 0 : Dynamic)>
_co;
914 typedef Matrix<Scalar, RowsAtCompileTime, ColsAtCompileTime>
PlainObject;
922 template <typename Derived>
924 typedef Block<Derived,
925 (
AllRows ? Derived::RowsAtCompileTime : Eigen::Dynamic),
926 (
AllCols ? Derived::ColsAtCompileTime : Eigen::Dynamic),
927 (
AllCols ? (bool)Derived::IsRowMajor
928 : (
AllRows ? (
bool)!Derived::IsRowMajor :
false))>
966 "It is not possible to access the coefficients of "
967 "MatrixBlockView this way.");
972 "It is not possible to access the coefficients of "
973 "MatrixBlockView this way.");
977 "It is not possible to access the coefficients of "
978 "MatrixBlockView this way.");
982 "It is not possible to access the coefficients of "
983 "MatrixBlockView this way.");
985 template <
typename Dest>
986 EIGEN_STRONG_INLINE
void evalTo(Dest& dst)
const {
990 template <
typename Dest>
991 EIGEN_STRONG_INLINE
void writeTo(Dest& dst)
const {
1002 template <
typename OtherDerived>
1004 const EigenBase<OtherDerived>& other) {
1005 EIGEN_STATIC_ASSERT_LVALUE(
ArgType);
1007 other.derived(), *
this);
1032 const RealScalar& prec = NumTraits<Scalar>::dummy_precision())
const {
1034 if (!
m_arg.block(block.ri(), block.ci(), block.rs(), block.cs())
1054 #undef HPP_EIGEN_USE_EVALUATOR
1057 template <
int Option>
1060 return os <<
"[ " << s.first <<
", " << s.first + s.second <<
" ]";
Definition: matrix-view.hh:835
internal::remove_all< ArgType >::type NestedExpression
Definition: matrix-view.hh:918
MatrixBlockView(ArgType &arg, const size_type &nbIndices, const Indices_t &indices)
Valid only when _allRows or _allCols is true.
Definition: matrix-view.hh:953
EIGEN_STRONG_INLINE Scalar & coeffRef(size_type index)
Definition: matrix-view.hh:975
internal::ref_selector< ArgType >::type ArgTypeNested
Definition: matrix-view.hh:917
EIGEN_STRONG_INLINE MatrixBlockView & operator=(const EigenBase< OtherDerived > &other)
Definition: matrix-view.hh:1003
EIGEN_STRONG_INLINE void writeTo(Dest &dst) const
Definition: matrix-view.hh:991
EIGEN_STRONG_INLINE size_type _blocks() const
Definition: matrix-view.hh:1011
EIGEN_STRONG_INLINE BlockXprType _block(const block_iterator &b)
Definition: matrix-view.hh:1014
EIGEN_STRONG_INLINE size_type cols() const
Definition: matrix-view.hh:962
EIGEN_STRONG_INLINE block_iterator _block_iterator() const
Definition: matrix-view.hh:1027
ArgType & m_arg
Definition: matrix-view.hh:1040
EIGEN_STRONG_INLINE bool isZero(const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const
Definition: matrix-view.hh:1031
EIGEN_STRONG_INLINE const BlockConstXprType _block(const block_iterator &b) const
Definition: matrix-view.hh:1021
hpp::constraints::size_type size_type
Definition: matrix-view.hh:837
EIGEN_STRONG_INLINE PlainObject eval() const
Definition: matrix-view.hh:996
block_t< const ArgType >::type BlockConstXprType
Definition: matrix-view.hh:932
RowIndices_t m_rows
Definition: matrix-view.hh:1042
block_t< ArgType >::type BlockXprType
Definition: matrix-view.hh:931
ColIndices_t m_cols
Definition: matrix-view.hh:1044
size_type m_nbRows
Definition: matrix-view.hh:1041
EIGEN_STRONG_INLINE size_type rows() const
Definition: matrix-view.hh:961
MatrixBlocks< _allRows, _allCols > MatrixIndices_t
Definition: matrix-view.hh:934
_ArgType ArgType
Definition: matrix-view.hh:916
@ AllCols
Definition: matrix-view.hh:838
@ Cols
Definition: matrix-view.hh:838
@ Rows
Definition: matrix-view.hh:838
@ AllRows
Definition: matrix-view.hh:838
size_type m_nbCols
Definition: matrix-view.hh:1043
internal::conditional< _allCols, const internal::empty_struct, const Indices_t & >::type ColIndices_t
Definition: matrix-view.hh:939
MatrixBlockView(ArgType &arg, const size_type &nbRows, const RowIndices_t rows, const size_type &nbCols, const ColIndices_t cols)
Definition: matrix-view.hh:943
EIGEN_STRONG_INLINE Scalar & coeffRef(size_type row, const size_type &col)
Definition: matrix-view.hh:980
internal::conditional< _allRows, const internal::empty_struct, const Indices_t & >::type RowIndices_t
Definition: matrix-view.hh:937
Matrix< Scalar, RowsAtCompileTime, ColsAtCompileTime > PlainObject
Definition: matrix-view.hh:914
MatrixIndices_t::segments_t Indices_t
Definition: matrix-view.hh:935
EIGEN_STRONG_INLINE CoeffReturnType coeff(size_type row, size_type col) const
Definition: matrix-view.hh:969
EIGEN_STRONG_INLINE void evalTo(Dest &dst) const
Definition: matrix-view.hh:986
EIGEN_STRONG_INLINE CoeffReturnType coeff(size_type index) const
Definition: matrix-view.hh:964
MatrixBase< MatrixBlockView< _ArgType, _Rows, _Cols, _allRows, _allCols > > Base
Definition: matrix-view.hh:911
Definition: matrix-view.hh:407
internal::traits< Derived >::RowIndices_t RowIndices_t
Definition: matrix-view.hh:420
const RowIndices_t & rows() const
Definition: matrix-view.hh:489
BlockIndex::segments_t segments_t
vector of segments
Definition: matrix-view.hh:419
const segments_t & indices() const
Definition: matrix-view.hh:483
MatrixBlocksBase(const MatrixBlocksBase &)
Copy constructor.
Definition: matrix-view.hh:542
EIGEN_STRONG_INLINE View< const MatrixType >::type rview(const MatrixBase< MatrixType > &other) const
Definition: matrix-view.hh:453
MatrixBlocksBase()
Empty constructor.
Definition: matrix-view.hh:539
EIGEN_STRONG_INLINE View< MatrixType >::type lview(const MatrixBase< MatrixType > &other) const
Definition: matrix-view.hh:438
BlockIndex::segment_t segment_t
Interval of indices [first, first + second - 1].
Definition: matrix-view.hh:417
hpp::constraints::size_type size_type
Index of vector or matrix.
Definition: matrix-view.hh:415
@ OneDimension
Definition: matrix-view.hh:412
@ AllRows
Definition: matrix-view.hh:410
@ AllCols
Definition: matrix-view.hh:411
MatrixBlocks< AllRows, AllCols > block(size_type i, size_type j, size_type ni, size_type nj) const
Definition: matrix-view.hh:515
internal::traits< Derived >::ColIndices_t ColIndices_t
Definition: matrix-view.hh:421
const ColIndices_t & cols() const
Definition: matrix-view.hh:493
MatrixBlocks< AllRows, AllCols > middleCols(size_type j, size_type nj) const
Definition: matrix-view.hh:532
MatrixBlocksRef< AllCols, AllRows > transpose() const
Definition: matrix-view.hh:463
Derived const & derived() const
Definition: matrix-view.hh:430
MatrixBlocks< AllRows, AllCols > middleRows(size_type i, size_type ni) const
Definition: matrix-view.hh:524
MatrixBlocksRef< AllRows, true > keepRows() const
Definition: matrix-view.hh:468
const size_type & nbRows() const
Definition: matrix-view.hh:506
Derived & derived()
Definition: matrix-view.hh:431
const size_type & nbIndices() const
Definition: matrix-view.hh:500
const size_type & nbCols() const
Definition: matrix-view.hh:510
MatrixBlocksRef< true, AllCols > keepCols() const
Definition: matrix-view.hh:473
Definition: matrix-view.hh:142
Definition: matrix-view.hh:547
void updateCols()
Definition: matrix-view.hh:669
const size_type & nbRows() const
Definition: matrix-view.hh:683
MatrixBlocks(const segments_t &idx)
Definition: matrix-view.hh:590
void addRow(const size_type &row, const size_type size)
Definition: matrix-view.hh:642
MatrixBlocks & operator=(const MatrixBlocks &other)
Definition: matrix-view.hh:620
MatrixBlocks(const segment_t &idx)
Definition: matrix-view.hh:600
MatrixBlocks(const MatrixBlocks &other)=default
size_type m_nbCols
Definition: matrix-view.hh:696
void updateIndices()
Definition: matrix-view.hh:690
const RowIndices_t & rows() const
Definition: matrix-view.hh:675
void updateRows()
Definition: matrix-view.hh:660
void clearCols()
Clear cols.
Definition: matrix-view.hh:634
MatrixBlocks(const size_type &nbRows, const RowIndices_t &rows, const size_type &nbCols, const ColIndices_t &cols)
Definition: matrix-view.hh:570
const ColIndices_t & cols() const
Definition: matrix-view.hh:679
MatrixBlocks(const segments_t &rows, const segments_t &cols)
Definition: matrix-view.hh:558
void addCol(const size_type &col, const size_type size)
Definition: matrix-view.hh:650
ColIndices_t m_cols
Definition: matrix-view.hh:698
RowIndices_t m_rows
Definition: matrix-view.hh:697
const size_type & nbCols() const
Definition: matrix-view.hh:687
MatrixBlocks(size_type start, size_type size)
Definition: matrix-view.hh:579
size_type m_nbRows
Definition: matrix-view.hh:696
MatrixBlocks(const MatrixBlocksBase< MBDerived > &other)
Copy constructor.
Definition: matrix-view.hh:608
void clearRows()
Clear rows.
Definition: matrix-view.hh:628
#define EIGEN_MATRIX_BLOCKS_PUBLIC_INTERFACE(Derived)
Definition: matrix-view.hh:394
assert(d.lhs()._blocks()==d.rhs()._blocks())
const Derived & d
Definition: matrix-view-operation.hh:138
std::pair< size_type, size_type > segment_t
Definition: fwd.hh:83
pinocchio::size_type size_type
Definition: fwd.hh:47
std::vector< segment_t > segments_t
Definition: fwd.hh:84
Definition: active-set-differentiable-function.hh:36
Definition: matrix-view.hh:49
static void shrink(segments_t &a)
static segments_t fromLogicalExpression(const Eigen::ArrayBase< Derived > &array)
Definition: matrix-view.hh:31
hpp::constraints::size_type size_type
Index of vector or matrix.
Definition: matrix-view.hh:51
static segments_t difference(const segments_t &a, const segments_t &b)
static segments_t difference(const segment_t &a, const segment_t &b)
Compute the set difference between two segments.
static segments_t split(segments_t &segments, const size_type &cardinal)
static void sort(segments_t &a)
hpp::constraints::segment_t segment_t
Interval of indices [first, first + second - 1].
Definition: matrix-view.hh:53
hpp::constraints::segments_t segments_t
vector of segments
Definition: matrix-view.hh:55
static segments_t sum(const segment_t &a, const segment_t &b)
Compute the union of tws segments.
static size_type cardinal(const segments_t &a)
static void add(segments_t &a, const segment_t &b)
In place addition of a segment_t to segments_t.
static segments_t extract(const segments_t &segments, size_type start, size_type cardinal)
static bool overlap(const segment_t &a, const segment_t &b)
Whether two segments overlap.
static void add(segments_t &a, const segments_t &b)
In place addition of segments_t to segments_t.
static segments_t difference(const segments_t &a, const segment_t &b)
static segments_t difference(const segment_t &a, const segments_t &b)
Definition: matrix-view.hh:839
size_type row
Definition: matrix-view.hh:841
size_type col
Definition: matrix-view.hh:841
block_iterator operator++(int)
Definition: matrix-view.hh:899
size_type rs() const
number of RowS
Definition: matrix-view.hh:863
size_type ri() const
Row in the Input matrix
Definition: matrix-view.hh:851
internal::variable_if_dynamic< size_type,(_allRows ? 0 :Dynamic)> _ro
Definition: matrix-view.hh:842
block_iterator(const MatrixBlockView &v)
Definition: matrix-view.hh:844
size_type co() const
Col in the Output matrix
Definition: matrix-view.hh:849
block_iterator & operator++()
Definition: matrix-view.hh:875
size_type cs() const
number of ColS
Definition: matrix-view.hh:869
size_type ro() const
Row in the Output matrix
Definition: matrix-view.hh:847
size_type ci() const
Col in the Input matrix
Definition: matrix-view.hh:857
constexpr bool valid() const
Definition: matrix-view.hh:904
internal::variable_if_dynamic< size_type,(_allCols ? 0 :Dynamic)> _co
Definition: matrix-view.hh:843
const MatrixBlockView & view
Definition: matrix-view.hh:840
Definition: matrix-view.hh:923
Block< Derived,(AllRows ? Derived::RowsAtCompileTime :Eigen::Dynamic),(AllCols ? Derived::ColsAtCompileTime :Eigen::Dynamic),(AllCols ?(bool) Derived::IsRowMajor :(AllRows ?(bool)!Derived::IsRowMajor :false))> type
Definition: matrix-view.hh:929
Smaller matrix composed by concatenation of the blocks.
Definition: matrix-view.hh:426
MatrixBlockView< MatrixType, _Rows, _Cols, AllRows, AllCols > type
Definition: matrix-view.hh:427
View::size_type size_type
Definition: matrix-view.hh:343
static ReturnType run(Derived &d, size_type r, size_type, size_type rs, size_type)
Definition: matrix-view.hh:345
View::size_type size_type
Definition: matrix-view.hh:352
static ReturnType run(Derived &d, size_type, size_type c, size_type, size_type cs)
Definition: matrix-view.hh:354
Definition: matrix-view.hh:333
View::size_type size_type
Definition: matrix-view.hh:334
static ReturnType run(Derived &d, size_type r, size_type c, size_type rs, size_type cs)
Definition: matrix-view.hh:336
static EIGEN_STRONG_INLINE Derived & evalTo(ActualDerived &dst, const ActualOtherDerived &other)
Definition: matrix-view.hh:278
static EIGEN_STRONG_INLINE Derived & run(Derived &dst, const OtherDerived &other)
Definition: matrix-view.hh:272
MatrixBlockView< ArgType, _Rows, _Cols, _allRows, _allCols > OtherDerived
Definition: matrix-view.hh:271
static EIGEN_STRONG_INLINE Derived & evalTo(ActualDerived &dst, const ActualOtherDerived &other)
Definition: matrix-view.hh:259
MatrixBlockView< ArgType, _Rows, _Cols, _allRows, _allCols > OtherDerived
Definition: matrix-view.hh:252
static EIGEN_STRONG_INLINE Derived & run(Derived &dst, const OtherDerived &other)
Definition: matrix-view.hh:253
Definition: matrix-view.hh:360
static void run(std::ostream &, const BlockIndexType &)
Definition: matrix-view.hh:362
Definition: matrix-view.hh:168
constexpr empty_struct(In0_t, In1_t)
Definition: matrix-view.hh:174
static constexpr Index size()
Definition: matrix-view.hh:175
MatrixXd::Index Index
Definition: matrix-view.hh:169
constexpr const Index & operator[](const Index &i) const
Definition: matrix-view.hh:176
constexpr empty_struct()=default
constexpr empty_struct(In_t)
Definition: matrix-view.hh:172
static void run(const Src &src, Dst &dst)
Definition: matrix-view.hh:320
MatrixBlockView< _ArgType2, _Rows2, _Cols2, _allRows2, _allCols2 > Dst
Definition: matrix-view.hh:319
MatrixBlockView< _ArgType, _Rows, _Cols, _allRows, _allCols > Src
Definition: matrix-view.hh:318
MatrixBlockView< _ArgType, _Rows, _Cols, _allRows, _allCols > Src
Definition: matrix-view.hh:305
static void run(const Src &src, Dst &dst)
Definition: matrix-view.hh:306
static void run(const Src &src, Dst &dst)
Definition: matrix-view.hh:295
MatrixBlockView< _ArgType, _Rows, _Cols, _allRows, _allCols > Dst
Definition: matrix-view.hh:294
Definition: matrix-view.hh:288
Definition: matrix-view.hh:364
static void run(std::ostream &os, const BlockIndexType &bi)
Definition: matrix-view.hh:366
static constexpr Else & rr(Then &, Else &s)
Definition: matrix-view.hh:159
static constexpr Else pp(Then, Else s)
Definition: matrix-view.hh:163
Definition: matrix-view.hh:146
static constexpr Then pp(Then f, Else)
Definition: matrix-view.hh:152
static constexpr Then & rr(Then &f, Else &)
Definition: matrix-view.hh:148
traits< ArgType >::StorageKind StorageKind
Definition: matrix-view.hh:208
traits< ArgType >::XprKind XprKind
Definition: matrix-view.hh:209
ArgType::Scalar Scalar
Definition: matrix-view.hh:210
ArgType::Index Index
Definition: matrix-view.hh:206
internal::conditional< _allCols, internal::empty_struct, const BlockIndex::segments_t & >::type ColIndices_t
Definition: matrix-view.hh:198
internal::conditional< _allRows, internal::empty_struct, const BlockIndex::segments_t & >::type RowIndices_t
Definition: matrix-view.hh:195
internal::conditional< _allCols, internal::empty_struct, BlockIndex::segments_t >::type ColIndices_t
Definition: matrix-view.hh:187
internal::conditional< _allRows, internal::empty_struct, BlockIndex::segments_t >::type RowIndices_t
Definition: matrix-view.hh:184
static std::ostream & run(std::ostream &os, const constraints::segment_t &s)
Definition: matrix-view.hh:1059