This question is inspired by the following challenge from CodeGolf.SE: https://codegolf.stackexchange.com/q/251510/88765.
Given positive integer $N$, we can consider a version of Conway’s game of life restricted to the $N\times N$ grid. Namely, given a state $s$, viewed as a function from $[N]^2$ to $\{0,1\}$, we define its updated state $s’= T(s)$ so that $s’(v) =1$ if there are exactly three $u$ at $L_\infty$ distance $1$ from $v$ with $s(u)=1$ or $s(v)=1$ and there are exactly two $u$ at $L_\infty$ distance $1$ from $v$ with $s(u)=1$.
Anyways, we can define a directed graph $G_N$ on the set of these states, with an edge from each state $s$ to its updated state $T(s)$. Let $L(N)$ denote the length of the longest directed path in $G_N$. Let $L’(N)$ be the length of longest directed path that doesn’t intersect a directed cycle.
Is the asymptotic growth of $L(N),L’(N)$ known? Also, is it possible for $L(N)$ to equal $L(N+1)$ or $L’(N)$ to equal $L’(N+1)$? In the latter case, this suggests the aforementioned Code Golf challenge can’t go on forever with perfect play (though they work with a slightly different variant I believe).