contains method

bool contains(
  1. Cell cell
)

Verifies if a specific node has already been traversed by the current stimulus.

This method performs a non-mutating lookup within the Causal Path registry, allowing internal logic to inspect the current propagation state without registering a new visit.

Implementation

bool contains(Cell cell) => _visited.contains(cell);