highs-sys 1.14.2

Rust binding for the HiGHS linear programming solver. See http://highs.dev.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Maximize
x1 + 2 x2 - 0.1 x3 -3 x4
Subject To
x1 + x2 <= 5
2 x1 - x2 >= 0
-x1 + 3 x2 >= 0
x3 + x4 >= .5
Bounds
x3 >= 1.1
x3 <= 10
Semi-continuous
x3
General
x3
End