| 18 | |
| 19 | |
| 20 | class Policy: |
| 21 | def __init__(self): |
| 22 | pass |
| 23 | |
| 24 | def act( |
| 25 | self, simulator: simple.Simulator, q: np.ndarray, v: np.ndarray, dt |
| 26 | ) -> np.ndarray: |
| 27 | pass |
| 28 | |
| 29 | |
| 30 | class DefaultPolicy(Policy): |
nothing calls this directly
no outgoing calls
no test coverage detected