==============================================================================
| 265 | |
| 266 | //============================================================================== |
| 267 | void Problem::removeIneqConstraint(FunctionPtr _ineqConst) |
| 268 | { |
| 269 | // TODO(JS): Need to delete? |
| 270 | mIneqConstraints.erase( |
| 271 | std::remove(mIneqConstraints.begin(), mIneqConstraints.end(), _ineqConst), |
| 272 | mIneqConstraints.end()); |
| 273 | } |
| 274 | |
| 275 | //============================================================================== |
| 276 | void Problem::removeAllEqConstraints() |