Re: [eigen] 3.3-alpha1 released! |
[ Thread Index | Date Index | More lists.tuxfamily.org/eigen Archives ]
The following snippet does not compile anymore (I'm using MSVC14):
#include <Eigen/Core>
#include <Eigen/Cholesky>
#include <iostream>
int main()
{
Eigen::Matrix<double, 1, 1> m;
m.setOnes();
std::cout << (m.transpose() * m).ldlt().solve(m) << std::endl;
}
The compilation succeeds only if I call .eval() before .ldlt().
There also seems to be a compilation issue with PermutationMatrix. I'm
trying to create a minimal working example.
Mail converted by MHonArc 2.6.19+ | http://listengine.tuxfamily.org/ |