There are three familiar operations on digraphs: symmetric closure, transitive closure, reflexive closure. If we call these $S, T, R$, then we can take sequences of them, computing things like $TSTSR(G)$, and the resulting graph may be different from $G$.
Inspired by this question, I'm wondering "For a fixed graph of $n$ nodes, if we consider all sequences of $S,T,$ and $R$ operations, of any finite length, we may get many distinct graphs. What is the largest number of distinct graphs that may arise? (possibly as a function of $n$)"
A weak upper bound one how many distinct graphs may arise from a starting graph $G$ is $2^{n^2}$, because that's the number of digraphs on $n$ nodes, but surely the number is far smaller. And $R$ is really just a red herring here, in the sense that once you apply $R$ once, it never has any further effect, so you can always "percolate" all the $R$s to the very end (or start) of the sequence, and if there are more than 1, you can replace with a single $R$.