While playing with my old column generation example http://www.amsterdamoptimization.com/pdf/colgen.pdf I wanted to change the display of of the patterns a little bit:
---- 181 PARAMETER pat pattern usage p1 p15 p18 p21 p25 p26 p28 p31 p34 width1 12.000 2.000 1.000 + p36 p37 p38 p39 p40 p42 p43 p44 p45 width1 1.000 4.000 + Total width1 654.000 |
Now I wanted to drop the zero’s after the decimal point, so I did:
option pat:0;
display pat;
This gave as result:
---- 183 PARAMETER pat pattern usage p1 p15 p18 p21 p25 p26 p28 p31 p34 width1 12 2 ***********1 + p36 p37 p38 p39 p40 p42 p43 p44 p45 width1 1 4 + Total width1 654 |
It is not clear what the stars are doing there. May be some debugging output left in the code.
No comments:
Post a Comment