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
\\ Testing scientific notation and special values
Minimize
 obj: 1.5e-2 x1 + 3.2E+3 x2
Subject To
 c1: 2.1e-1 x1 + 1.0e+1 x2 <= 1000
 c2: x1 + x2 >= 0
Bounds
 -infinity <= x1 <= +infinity
 0 <= x2 <= +inf
End