(self)
| 34 | return pos - torch.exp(log_radius) |
| 35 | |
| 36 | def get_initial_state(self): |
| 37 | state = (self.init_pos, self.init_vel, self.log_radius) |
| 38 | return self.t0, state |
| 39 | |
| 40 | def state_update(self, state): |
| 41 | """Updates state based on an event (collision).""" |
no outgoing calls
no test coverage detected