(self, vdict: dict, vid: str)
| 78 | jl.switchTime = switchTime |
| 79 | |
| 80 | def addVeh(self, vdict: dict, vid: str) -> None: |
| 81 | if vdict and vid in vdict.keys(): |
| 82 | return |
| 83 | else: |
| 84 | vehIns = Vehicle(vid) |
| 85 | vdict[vid] = vehIns |
| 86 | |
| 87 | def updateSurroundVeh(self): |
| 88 | nextStepVehicles = set() |
no test coverage detected