| 67 | } |
| 68 | |
| 69 | std::vector<objective_function_term*> objective_function::get_terms() |
| 70 | { |
| 71 | std::vector<objective_function_term*> ptrs; |
| 72 | for (const auto& ptr : m_terms) { |
| 73 | ptrs.push_back(ptr.get()); |
| 74 | } |
| 75 | return ptrs; |
| 76 | } |
| 77 | |
| 78 | void objective_function::setup(model& m) |
| 79 | { |
no test coverage detected