forked from UNN/2026-rff_mp
5 lines
193 B
Python
5 lines
193 B
Python
class SearchStats:
|
|
def __init__(self, time_ms, visited_cells, path_length):
|
|
self.time_ms = time_ms
|
|
self.visited_cells = visited_cells
|
|
self.path_length = path_length |