FICO
FICO Xpress Optimization Examples Repository
FICO Optimization Community FICO Xpress Optimization Home
Back to examples browserPrevious example

Save/access a postsolved solution in memory

Description
We take the knapsack problem in burglar.mps and initiate a tree search. Whenever an integer solution it found it is postsolved, stored in memory, and printed to an output file. The best and final solution values, and other tree search information, are displayed on screen.

savesol_vbdnet.zip[download all files]

Source Files
By clicking on a file name, a preview is opened at the bottom of this page.
SaveSol.vb[download]

Data Files





burglar.mps

NAME          burglar 
ROWS
 N  ValMax  
 L  Wmax    
COLUMNS
    x_____01  ValMax       15.000000   Wmax          2.000000
    x_____02  ValMax      100.000000   Wmax         20.000000
    x_____03  ValMax       90.000000   Wmax         20.000000
    x_____04  ValMax       60.000000   Wmax         30.000000
    x_____05  ValMax       40.000000   Wmax         40.000000
    x_____06  ValMax       15.000000   Wmax         30.000000
    x_____07  ValMax       10.000000   Wmax         60.000000
    x_____08  ValMax        1.000000   Wmax         10.000000
RHS
    RHS00001  Wmax        102.000000
BOUNDS
 BV BOUND001  x_____01
 BV BOUND001  x_____02
 BV BOUND001  x_____03
 BV BOUND001  x_____04
 BV BOUND001  x_____05
 BV BOUND001  x_____06
 BV BOUND001  x_____07
 BV BOUND001  x_____08
ENDATA

Back to examples browserPrevious example