lemon/lp_glpk.cc
changeset 2368 6b2e8b734ae7
parent 2366 bfbdded3763a
child 2386 81b47fc5c444
equal deleted inserted replaced
24:c0ce78250fda 25:0624b9ad5c4a
    26 
    26 
    27   LpGlpk::LpGlpk() : Parent() {
    27   LpGlpk::LpGlpk() : Parent() {
    28     rows = _lp_bits::LpId(1);
    28     rows = _lp_bits::LpId(1);
    29     cols = _lp_bits::LpId(1);
    29     cols = _lp_bits::LpId(1);
    30     lp = lpx_create_prob();
    30     lp = lpx_create_prob();
       
    31     lpx_create_index(lp);
    31     ///\todo control function for this:
    32     ///\todo control function for this:
    32     lpx_set_int_parm(lp, LPX_K_DUAL, 1);
    33     lpx_set_int_parm(lp, LPX_K_DUAL, 1);
    33     messageLevel(0);
    34     messageLevel(0);
    34   }
    35   }
    35   
    36