1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #ifndef IGL_LINPROG_H
- #define IGL_LINPROG_H
- #include "igl_inline.h"
- #include <Eigen/Core>
- namespace igl
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- IGL_INLINE bool linprog(
- const Eigen::VectorXd & c,
- const Eigen::MatrixXd & A,
- const Eigen::VectorXd & b,
- const int k,
- Eigen::VectorXd & f);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- IGL_INLINE bool linprog(
- const Eigen::VectorXd & f,
- const Eigen::MatrixXd & A,
- const Eigen::VectorXd & b,
- const Eigen::MatrixXd & B,
- const Eigen::VectorXd & c,
- Eigen::VectorXd & x);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "linprog.cpp"
- #endif
- #endif
|