src/lemon/lp_cplex.cc
changeset 1432 46b088b01f88
parent 1431 ad44b1dd8013
equal deleted inserted replaced
3:14d94cd3fecb 4:32a642a18c13
    93     rhs[0]=INF;
    93     rhs[0]=INF;
    94     int i = CPXgetnumrows (env, lp);
    94     int i = CPXgetnumrows (env, lp);
    95     status = CPXnewrows (env, lp, 1, rhs, sense, NULL, NULL);
    95     status = CPXnewrows (env, lp, 1, rhs, sense, NULL, NULL);
    96     return i;
    96     return i;
    97   }
    97   }
       
    98 
       
    99 
       
   100   void LpCplex::_eraseCol(int i) {
       
   101     ///\todo Not implemented yet
       
   102   }
       
   103   
       
   104   void LpCplex::_eraseRow(int i) {
       
   105     ///\todo Not implemented yet
       
   106   }
       
   107 
    98   
   108   
    99   ///\warning Data at index 0 is ignored in the arrays.
   109   ///\warning Data at index 0 is ignored in the arrays.
   100   void LpCplex::_setRowCoeffs(int i, 
   110   void LpCplex::_setRowCoeffs(int i, 
   101 			      int length,
   111 			      int length,
   102 			      int  const * indices, 
   112 			      int  const * indices,