mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Fix dimension of Solve expression
This commit is contained in:
@@ -69,7 +69,7 @@ public:
|
|||||||
: m_dec(dec), m_rhs(rhs)
|
: m_dec(dec), m_rhs(rhs)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
EIGEN_DEVICE_FUNC Index rows() const { return m_dec.rows(); }
|
EIGEN_DEVICE_FUNC Index rows() const { return m_dec.cols(); }
|
||||||
EIGEN_DEVICE_FUNC Index cols() const { return m_rhs.cols(); }
|
EIGEN_DEVICE_FUNC Index cols() const { return m_rhs.cols(); }
|
||||||
|
|
||||||
EIGEN_DEVICE_FUNC const Decomposition& dec() const { return m_dec; }
|
EIGEN_DEVICE_FUNC const Decomposition& dec() const { return m_dec; }
|
||||||
|
|||||||
Reference in New Issue
Block a user