(self)
| 307 | return self.round_func(np.broadcast_to(max_durations, shape)) |
| 308 | |
| 309 | def max_reloads(self) -> np.ndarray: |
| 310 | max_reloads = self.instance.get("vehicles_max_reloads", _UINT_MAX) |
| 311 | return np.broadcast_to(max_reloads, self.num_vehicles) |
| 312 | |
| 313 | def fixed_costs(self) -> np.ndarray: |
| 314 | fixed_costs = self.instance.get("vehicles_fixed_cost", 0) |