(self)
| 14 | t_max: Optional[torch.Tensor] = None |
| 15 | |
| 16 | def copy(self) -> "Query": |
| 17 | return Query( |
| 18 | position=self.position, |
| 19 | direction=self.direction, |
| 20 | t_min=self.t_min, |
| 21 | t_max=self.t_max, |
| 22 | ) |
| 23 | |
| 24 | def map_tensors(self, f: Callable[[torch.Tensor], torch.Tensor]) -> "Query": |
| 25 | return Query( |
no test coverage detected