Updates the simulation state. Args: n_sub_steps: Optional number of times to repeatedly update the simulation state. Defaults to 1.
(self, n_sub_steps=1)
| 210 | |
| 211 | @abc.abstractmethod |
| 212 | def step(self, n_sub_steps=1): |
| 213 | """Updates the simulation state. |
| 214 | |
| 215 | Args: |
| 216 | n_sub_steps: Optional number of times to repeatedly update the simulation |
| 217 | state. Defaults to 1. |
| 218 | """ |
| 219 | |
| 220 | @abc.abstractmethod |
| 221 | def time(self): |
no outgoing calls