├── CMakeLists.txt ├── FindGUROBI.cmake ├── LICENSE ├── README.md ├── cmake └── glpk.cmake.in ├── imgs ├── arrow3d │ ├── arrow3d.gif │ ├── arrow3d.m │ ├── readme.txt │ └── rotatedata.m ├── details.png ├── details.svg ├── main.m ├── old.m ├── polyhedra.png └── polyhedra.svg ├── include └── separator.hpp ├── package.xml └── src ├── separator_glpk.cpp ├── separator_gurobi.cpp └── test_separator.cpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-acl/separator/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /FindGUROBI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-acl/separator/HEAD/FindGUROBI.cmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-acl/separator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-acl/separator/HEAD/README.md -------------------------------------------------------------------------------- /cmake/glpk.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-acl/separator/HEAD/cmake/glpk.cmake.in -------------------------------------------------------------------------------- /imgs/arrow3d/arrow3d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-acl/separator/HEAD/imgs/arrow3d/arrow3d.gif -------------------------------------------------------------------------------- /imgs/arrow3d/arrow3d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-acl/separator/HEAD/imgs/arrow3d/arrow3d.m -------------------------------------------------------------------------------- /imgs/arrow3d/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-acl/separator/HEAD/imgs/arrow3d/readme.txt -------------------------------------------------------------------------------- /imgs/arrow3d/rotatedata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-acl/separator/HEAD/imgs/arrow3d/rotatedata.m -------------------------------------------------------------------------------- /imgs/details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-acl/separator/HEAD/imgs/details.png -------------------------------------------------------------------------------- /imgs/details.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-acl/separator/HEAD/imgs/details.svg -------------------------------------------------------------------------------- /imgs/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-acl/separator/HEAD/imgs/main.m -------------------------------------------------------------------------------- /imgs/old.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-acl/separator/HEAD/imgs/old.m -------------------------------------------------------------------------------- /imgs/polyhedra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-acl/separator/HEAD/imgs/polyhedra.png -------------------------------------------------------------------------------- /imgs/polyhedra.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-acl/separator/HEAD/imgs/polyhedra.svg -------------------------------------------------------------------------------- /include/separator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-acl/separator/HEAD/include/separator.hpp -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-acl/separator/HEAD/package.xml -------------------------------------------------------------------------------- /src/separator_glpk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-acl/separator/HEAD/src/separator_glpk.cpp -------------------------------------------------------------------------------- /src/separator_gurobi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-acl/separator/HEAD/src/separator_gurobi.cpp -------------------------------------------------------------------------------- /src/test_separator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mit-acl/separator/HEAD/src/test_separator.cpp --------------------------------------------------------------------------------