equal
deleted
inserted
replaced
78 } |
78 } |
79 |
79 |
80 void LpCplex::_eraseRow(int i) { |
80 void LpCplex::_eraseRow(int i) { |
81 CPXdelrows(env, lp, i, i); |
81 CPXdelrows(env, lp, i, i); |
82 } |
82 } |
83 |
83 |
|
84 void LpCplex::_getColName(int col, std::string &name) |
|
85 { |
|
86 ///\bug Unimplemented |
|
87 } |
|
88 |
|
89 void LpCplex::_setColName(int col, const std::string &name) |
|
90 { |
|
91 ///\bug Untested |
|
92 CPXchgcolname(env, lp, 1, &col, const_cast<char*>(name.c_str())); |
|
93 } |
84 |
94 |
85 ///\warning Data at index 0 is ignored in the arrays. |
95 ///\warning Data at index 0 is ignored in the arrays. |
86 void LpCplex::_setRowCoeffs(int i, |
96 void LpCplex::_setRowCoeffs(int i, |
87 int length, |
97 int length, |
88 int const * indices, |
98 int const * indices, |