src/work/marci/lp/lp_solver_wrapper.h
changeset 768 a5e9303a5511
parent 765 4405b6be83bb
child 888 cc3590763f7f
equal deleted inserted replaced
1:2dc7015ac0fb 2:20ef55279cb9
   329     void setColBounds(const ColIt& col_it, int bound_type, 
   329     void setColBounds(const ColIt& col_it, int bound_type, 
   330 		      double lo, double up) {
   330 		      double lo, double up) {
   331       lpx_set_col_bnds(lp, col_iter_map[col_it], bound_type, lo, up);
   331       lpx_set_col_bnds(lp, col_iter_map[col_it], bound_type, lo, up);
   332     }
   332     }
   333     ///.
   333     ///.
   334     void setObjCoef(const ColIt& col_it, double obj_coef) { 
   334     double getObjCoef(const ColIt& col_it) { 
   335       lpx_set_obj_coef(lp, col_iter_map[col_it], obj_coef);
   335       return lpx_get_obj_coef(lp, col_iter_map[col_it]);
   336     }
   336     }
   337     ///.
   337     ///.
   338     void setRowBounds(const RowIt& row_it, int bound_type, 
   338     void setRowBounds(const RowIt& row_it, int bound_type, 
   339 		      double lo, double up) {
   339 		      double lo, double up) {
   340       lpx_set_row_bnds(lp, row_iter_map[row_it], bound_type, lo, up);
   340       lpx_set_row_bnds(lp, row_iter_map[row_it], bound_type, lo, up);