lemon/lp_base.h
changeset 1697 4c593a4096da
parent 1610 893dacc1866c
child 1766 6c59b1386fe8
equal deleted inserted replaced
13:6b35836ce262 14:1fc031b61af1
   602     ///Creates a new LP problem
   602     ///Creates a new LP problem
   603     LpSolverBase &newLp() {return _newLp();}
   603     LpSolverBase &newLp() {return _newLp();}
   604     ///Makes a copy of the LP problem
   604     ///Makes a copy of the LP problem
   605     LpSolverBase &copyLp() {return _copyLp();}
   605     LpSolverBase &copyLp() {return _copyLp();}
   606     
   606     
   607     ///\name Build up and modify of the LP
   607     ///\name Build up and modify the LP
   608 
   608 
   609     ///@{
   609     ///@{
   610 
   610 
   611     ///Add a new empty column (i.e a new variable) to the LP
   611     ///Add a new empty column (i.e a new variable) to the LP
   612     Col addCol() { Col c; c.id=cols.insert(_addCol()); return c;}
   612     Col addCol() { Col c; c.id=cols.insert(_addCol()); return c;}