lp_parser_rs 3.4.1

A Rust parser for the LP file format.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
\Problem name: ClpDefaultName

Minimize
obj: 5 x0 + 3 x1 + 2 x2 + 7 x3 + 4 x4
Subject To
cons0:  2 x0 + 8 x1 + 4 x2 <= 10
cons1:  2 x3 + 5 x4 <= 11
Bounds
 0 <= x0 <= 1
 0 <= x1 <= 1
 0 <= x2 <= 1
 0 <= x3 <= 1
 0 <= x4 <= 1
End