perf(simulation): keep rover command path within TTL

This commit is contained in:
DCCONSTRUCTIONS
2026-07-24 22:14:56 +03:00
parent a0e9597cb5
commit 8eecb8ed69
2 changed files with 54 additions and 8 deletions
@@ -27,6 +27,9 @@ class _Collector:
def collect(self, run_id: str) -> dict[str, object]:
return {"run_id": run_id, "sim_time_ns": 1_000_000_000}
def estimate_sim_time_ns(self) -> int:
return 1_000_000_000
class _Controller:
def __init__(self) -> None: