r""" Executes a benchmark of the given callable with the given arguments.
(self, callable, *args, n_runs=1, warmup_runs=1)
| 914 | raise NotImplementedError() |
| 915 | |
| 916 | def _bench(self, callable, *args, n_runs=1, warmup_runs=1): |
| 917 | r""" |
| 918 | Executes a benchmark of the given callable with the given arguments. |
| 919 | """ |
| 920 | raise NotImplementedError() |
| 921 | |
| 922 | def solve(self, a, b): |
| 923 | r""" |
no outgoing calls