(current_sat_id, current_orbit_id, orbit_num)
| 32 | |
| 33 | |
| 34 | def get_right_satellite(current_sat_id, current_orbit_id, orbit_num): |
| 35 | if current_orbit_id == orbit_num - 1: |
| 36 | return [current_sat_id, 0] |
| 37 | else: |
| 38 | return [current_sat_id, current_orbit_id + 1] |
| 39 | |
| 40 | |
| 41 | def get_down_satellite(current_sat_id, current_orbit_id, sat_num): |
nothing calls this directly
no outgoing calls
no test coverage detected