Skip to content

vsamy/eigen-cddlib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.