| 621 | inline std::string model::get_name() const noexcept { return m_name; } |
| 622 | |
| 623 | inline observer_ptr<objective_function> model::get_objective_function() noexcept |
| 624 | { |
| 625 | return m_objective_function.get(); |
| 626 | } |
| 627 | |
| 628 | inline observer_ptr<objective_function const> |
| 629 | model::get_objective_function() const noexcept |
no test coverage detected