I added several different versions of Eigen to default including directory of Visual C++.
But I got collapse problem when using LDLT
(Cholesky decomposition) for some of the testing numerical examples.
So I want to determine which version is actually active when debugging the code.
Is there any function which can indicate the current active Eigen version number?
EIGEN_WORLD_VERSION
,EIGEN_MAJOR_VERSION
andEIGEN_MINOR_VERSION
, you can easily embed this information in your application. – Recombination3
,1
and91
respectively, does this mean the most latest3.20
since there is no3.191
release? – KinslerMacros.h
located at\Eigen\src\Core\util\
. thank you. – Kinsler