# MOLPg-001.dat # Original AMPL coding by Sven Leyffer, University of Dundee # # A MOLP instance foruse with MOLPg.mod # ... problem dimensions & index sets param n := 8; # ... number of variables param m := 8; # ... number of constraints param p := 3; # ... number of objectives # ... objective gradients param C : 1 2 3 4 5 6 7 8 := 1 7 5 0 4 -2 7 6 6 2 -3 -7 8 0 6 -7 -3 0 3 1 4 0 3 -1 7 -4 -7 ; # ... constraint Jacobian param A : 1 2 3 4 5 6 7 8 := 1 0 8 0 1 -3 7 -1 0 2 7 7 6 4 5 0 0 0 3 8 0 0 1 8 0 -3 -3 4 8 3 5 0 1 0 8 0 5 1 6 3 3 3 3 4 0 6 0 5 -1 0 0 0 3 -3 7 7 -2 0 2 8 8 4 -1 8 0 5 5 -2 -1 0 0 6 ; # # ... lower/upper bounds on A^T x param : b := 1 5 2 9 3 6 4 8 5 9 6 9 7 7 8 8 ;