|    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); |