| 29 | class Optimizer { |
| 30 | public: |
| 31 | Optimizer(opt_objective func, opt_gradient grad): F(func), gradF(grad){} |
| 32 | |
| 33 | void optimize(opt_var& initial_guess, opt_option& option,DeviceBlasHandle& cublas_H) { |
| 34 | x.copy(initial_guess); |
nothing calls this directly
no outgoing calls
no test coverage detected