| 2452 | } |
| 2453 | |
| 2454 | int64_t bark_get_eval_time(struct bark_context* bctx) { |
| 2455 | if (!bctx) { |
| 2456 | return 0; |
| 2457 | } |
| 2458 | return bctx->stats.t_eval_us; |
| 2459 | } |
| 2460 | |
| 2461 | void bark_reset_statistics(struct bark_context* bctx) { |
| 2462 | if (!bctx) { |
nothing calls this directly
no outgoing calls
no test coverage detected