| 18 | |
| 19 | template<typename Dtype> |
| 20 | SolverAction::Enum Solver<Dtype>::GetRequestedAction() { |
| 21 | if (action_request_function_) { |
| 22 | // If the external request function has been set, call it. |
| 23 | return action_request_function_(); |
| 24 | } |
| 25 | return SolverAction::NONE; |
| 26 | } |
| 27 | |
| 28 | template <typename Dtype> |
| 29 | Solver<Dtype>::Solver(const SolverParameter& param) |
nothing calls this directly
no outgoing calls
no test coverage detected