| 394 | } |
| 395 | |
| 396 | std::vector<weights*> model::get_weights() |
| 397 | { |
| 398 | std::vector<weights*> weights_list; |
| 399 | for (const auto& w : m_weights) { |
| 400 | weights_list.push_back(w.get()); |
| 401 | } |
| 402 | return weights_list; |
| 403 | } |
| 404 | |
| 405 | std::vector<weights const*> model::get_weights() const |
| 406 | { |
no test coverage detected