Models Additional mixed-integer linear programming test problems: milp prob

From TomWiki
Revision as of 09:40, 12 August 2011 by Elias (talk | contribs) (Created page with "{{Part Of Manual|title=TOMLAB Models|link=TOMLAB Models}} Download [http://tomopt.com/docs/milp_prob.zip milp_prob.zip] and extract to a folder, for example <tt>tomlab...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Notice.png

This page is part of TOMLAB Models. See TOMLAB Models.

Download milp_prob.zip and extract to a folder, for example tomlab/testprob2/milp_prob.

The folder will then contain about 90 test problems, of which one is blp-ic97.mps. To solve this problem with TOMLAB enter the following in Matlab:

[F, c, A, b_L, b_U, x_L, x_U, IntVars] = cpx2mat('blp-ic97.mps',0);
Prob = mipAssign(c, A, b_L, b_U, x_L, x_U, [], 'Additional milp-problem: blp-ic97');
Result = tomRun('cplex', Prob, 1);

The problems in this zip-file have up to some 14000 variables and about 16000 constraints.