Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 954 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 954 Bytes

eigen-cddlib

Eigen wrapper for Komei Fukuda's cdd library. For a cmake install, you can use the forked repo

Installing

First install cddlib whether by installing this (prefer way) or with:

sudo apt-get install libcdd-dev

Then, 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 install

If 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.

Testing

cd eigen-cddlib/build
make test

Examples

There is no basic examples yet. Please see test files for an overview, and doxygen files for API documentation.