(self)
| 230 | return self.round_func(self.instance["time_window"]) |
| 231 | |
| 232 | def release_times(self) -> np.ndarray: |
| 233 | release_times = self.instance.get("release_time", 0) |
| 234 | shape = self.num_locations |
| 235 | return self.round_func(np.broadcast_to(release_times, shape)) |
| 236 | |
| 237 | def reload_depots(self) -> list[tuple[int, ...]]: |
| 238 | if "vehicles_reload_depot" not in self.instance: |