Skip to content

Commit

Permalink
Add missing example data file
Browse files Browse the repository at this point in the history
  • Loading branch information
mtanneau committed Nov 24, 2020
1 parent 3240313 commit 5b90f3a
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions examples/dat/lpex_freevars.mps
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
NAME LP_FREE_VARS

* Problem:
* min x1 + x2 + x3
* s.t. 2 x1 + x2 >= 2
* x1 + 2 x2 >= 2
* x1 + x2 + x3 >= 0

ROWS
G ROW1
G ROW2
G ROW3
N COST
COLUMNS
X1 ROW1 2. ROW2 1.
X1 COST 1. ROW3 1.
X2 ROW1 1. ROW2 2.
X2 COST 1. ROW3 1.
X3 ROW3 1. COST 1.
RHS
B ROW1 2. ROW2 2.
BOUNDS
FR BND1 X1
FR BND1 X2
FR BND1 X3
ENDATA

0 comments on commit 5b90f3a

Please sign in to comment.