2026-rff_mp/petryainiyas/task2/core/search_stats.py

12 lines
226 B
Python
Raw Normal View History

2026-05-30 19:27:37 +00:00
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 = ""