forked from UNN/2026-rff_mp
12 lines
226 B
Python
12 lines
226 B
Python
|
|
from dataclasses import dataclass, field
|
||
|
|
|
||
|
|
|
||
|
|
@dataclass
|
||
|
|
class SearchStats:
|
||
|
|
timeMs: float
|
||
|
|
visitedCells: int
|
||
|
|
pathLength: int
|
||
|
|
path: list = field(default_factory=list)
|
||
|
|
found: bool = False
|
||
|
|
algorithm: str = ""
|