==============================================================================
| 203 | |
| 204 | //============================================================================== |
| 205 | void Problem::setObjective(FunctionPtr _obj) |
| 206 | { |
| 207 | DART_ASSERT(_obj && "nullptr pointer is not allowed."); |
| 208 | mObjective = _obj; |
| 209 | } |
| 210 | |
| 211 | //============================================================================== |
| 212 | FunctionPtr Problem::getObjective() const |
no outgoing calls