(start: TPos, i: int, goal: TPos, g_function: dict[TPos, float])
| 74 | |
| 75 | |
| 76 | def key(start: TPos, i: int, goal: TPos, g_function: dict[TPos, float]): |
| 77 | ans = g_function[start] + W1 * heuristics[i](start, goal) |
| 78 | return ans |
| 79 | |
| 80 | |
| 81 | def do_something(back_pointer, goal, start): |
no outgoing calls
no test coverage detected