(self, data: dict | None = None)
| 1042 | """Solver statistics.""" |
| 1043 | |
| 1044 | def __init__(self, data: dict | None = None) -> None: |
| 1045 | self._data = data or {} |
| 1046 | |
| 1047 | def __len__(self) -> int: |
| 1048 | return len(self._data) |
nothing calls this directly
no outgoing calls
no test coverage detected