2026-rff_mp/BolonkinNM/core/search_stats.py

12 lines
226 B
Python
Raw Normal View History

2026-05-24 16:39: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 = ""