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
15
16
\Problem name: ClpDefaultName

Minimize
obj: 2.100000000 x0 + 1000 x1 + 2.200000000 x2 + 1000 x3 + 2.300000000 x4 + 1000 x5
Subject To
cons0:  x0 + x1 <= 21.100000000
cons0_low: x0 + x1 >= 0
cons1:  x2 + x3 <= 22.200000000
cons1_low: x2 + x3 >= 0
cons2:  x4 + x5 <= 23.300000000
cons2_low: x4 + x5 >= 0
Bounds
 0 <= x0 <= 21.100000000
 0 <= x2 <= 22.200000000
 0 <= x4 <= 23.300000000
End