Wrap the objective function on a dict to kwargs
(func)
| 99 | |
| 100 | |
| 101 | def __objective_fmin_wrapper(func): |
| 102 | """ |
| 103 | Wrap the objective function on a dict to kwargs |
| 104 | """ |
| 105 | |
| 106 | def _objective(kwargs): |
| 107 | return func(**kwargs) |
| 108 | |
| 109 | return _objective |
| 110 | |
| 111 | |
| 112 | class FMinIter: |