highs-sys 1.14.0

Rust binding for the HiGHS linear programming solver. See http://highs.dev.
Documentation
1
2
3
4
5
6
7
8
9
10
# HighsSolution

The solution of a model is communicated via an instance of the HighsSolution structure

- value\_valid: Scalar of type bool - Indicates whether the column and row values are valid
- dual\_valid: Scalar of type bool - Indicates whether the column and row [duals]@ref Dual-values are valid
- col\_value: Vector of type double - Values of the columns (variables)
- col\_dual: Vector of type double - Duals of the columns (variables)
- row\_value: Vector of type double - Values of the rows (constraints)
- row\_dual: Vector of type double - Duals of the rows (constraints)