Returns a reward from the environment. Args: physics: Instance of `Physics`.
(self, physics)
| 347 | |
| 348 | @abc.abstractmethod |
| 349 | def get_reward(self, physics): |
| 350 | """Returns a reward from the environment. |
| 351 | |
| 352 | Args: |
| 353 | physics: Instance of `Physics`. |
| 354 | """ |
| 355 | |
| 356 | def get_termination(self, physics): |
| 357 | """If the episode should end, returns a final discount, otherwise None.""" |
no outgoing calls
no test coverage detected