Graph crawling automata.
You can find this rule on OEIS: https://oeis.org/A376148
- Start with a graph
G. - Pick an origin node
oin graphG. - Find all walks which start at node
oand independently repeat exactly one node. - Label the nodes for each walk
[old label, substeps to reach]. - Take the temporally sensitive union all walks to get the resulting graph
G-o.
Nodes are considered self-edges by default. All edges are considered undirected by default. "Substep" means traversing one edge for every walk.
- the next step
G-o1-o2can be started onceG-o1has reached the substep which includeso2 - choosing a stationary origin allows you to start steps more frequently

