Dear Eigen's developers, I encounter a compilation issue when trying to solve the small lines of: #include <Eigen/Core> int main(int, char**) { using namespace Eigen; const DenseIndex size = 100; Matrix<double,Dynamic,1,RowMajor> row_vec(size); MatrixXd row_vec_dyn(row_vec); return 0; } This seems due to the lines: EIGEN_STATIC_ASSERT((EIGEN_IMPLIES(MaxRowsAtCompileTime==1 && MaxColsAtCompileTime!=1, (Options&RowMajor)==RowMajor) && EIGEN_IMPLIES(MaxColsAtCompileTime==1 && MaxRowsAtCompileTime!=1, (Options&RowMajor)==0) in src/Core/PlainObjectBase.h I can remove those lines and make a new PR to the official repo. What do you think? Thanks in advance for your help, Best, Justin
That is by design. See duplicate Bug 416 for discussion on the topic. *** This bug has been marked as a duplicate of bug 416 ***
-- GitLab Migration Automatic Message -- This bug has been migrated to gitlab.com's GitLab instance and has been closed from further activity. You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.com/libeigen/eigen/issues/1722.