AbstractAnalyzer.init_state#

abstractmethod AbstractAnalyzer.init_state(*args, **kwargs)[source]#

Initialize the analyzer state.

Returns:
statetuple

Initial state tuple of the analyzer instance. The exact structure depends on the specific implementation.

Notes

This method creates the initial state that will be passed to AbstractAnalyzer.__call__() and finally to AbstractAnalyzer.result(). The state should contain all necessary data structures for accumulating analysis results.