SpeedBump #23

Merged
s473616 merged 7 commits from SpeedBump into master 2023-05-13 22:05:21 +02:00
Showing only changes of commit a2d6cc688b - Show all commits

4
bfs.py
View File

@ -9,12 +9,12 @@ from turnCar import turn_left_orientation, turn_right_orientation
class Succ:
state: AgentState
action: AgentActionType
cost: int
##cost: int
def __init__(self, state: AgentState, action: AgentActionType) -> None:
Review

nie przekazujesz tutaj argumentu cost, aplikacja się wywala

nie przekazujesz tutaj argumentu cost, aplikacja się wywala
self.state = state
self.action = action
self.cost = cost
##self.cost = cost
def find_path_to_nearest_can(startState: AgentState, grid: Dict[Tuple[int, int], GridCellType]) -> list[AgentActionType]:
q: Queue[list[Succ]] = Queue()