Not sure if it worth taking a look. I'm not able to build a tree per the example in the documentation below after the update 1.5.0. Example below still works if I use version 1.4.3
Error Message from g++ 13.2.0
Eigen::Matrix<num_t,Dynamic,Dynamic> mat;
// Fill out "mat"...
typedef KDTreeEigenMatrixAdaptor< Eigen::Matrix<num_t,Dynamic,Dynamic> > my_kd_tree_t;
const int max_leaf = 10;
my_kd_tree_t mat_index(dimdim, mat, max_leaf );
mat_index.index->buildIndex();
mat_index.index->...
Hi,
Not sure if it worth taking a look. I'm not able to build a tree per the example in the documentation below after the update 1.5.0. Example below still works if I use version 1.4.3
Error Message from g++ 13.2.0
Eigen::Matrix<num_t,Dynamic,Dynamic> mat; // Fill out "mat"... typedef KDTreeEigenMatrixAdaptor< Eigen::Matrix<num_t,Dynamic,Dynamic> > my_kd_tree_t; const int max_leaf = 10; my_kd_tree_t mat_index(dimdim, mat, max_leaf ); mat_index.index->buildIndex(); mat_index.index->...