Camargue
|
Simple struct representing sparse matrix row for passing to LP solver. More...
#include <lp_util.hpp>
Public Attributes | |
std::vector< int > | rmatind |
Indices of nonzero entries. | |
std::vector< double > | rmatval |
Coefficients for indices in rmatind. | |
char | sense = '\0' |
'G' for >=, 'L' for <=, 'E' for ==. | |
double | rhs = 0.0 |
The righthand side. | |
double | lp_viol = 0.0 |
(Optional) violation wrt some vector. | |
Simple struct representing sparse matrix row for passing to LP solver.