Eigen wrapper for Komei Fukuda's cdd library. For a cmake install, you can use the forked repo
First install cddlib whether by installing this (prefer way) or with:
sudo apt-get install libcdd-devThen, install eigen-cddlib following the standard CMake procedure:
git clone --recursive https://github.com/vsamy/eigen-cddlib
cd eigen-cddlib
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFX=<your_path>
make -j4
make installIf cdd has not been installed in the default path, CMake may not find it. In this case, add the path as a HINTS in find_package.
cd eigen-cddlib/build
make testThere is no basic examples yet. Please see test files for an overview, and doxygen files for API documentation.