Details and Options
The argument state should be given as a list.
The argument len should be given as a positive integer.
An uncompressed tag system state representation is a list of digits, such as {1,1,0,1,0,1,0}.
A compressed tag system state representation is a list of length two, where the first element is a digit and the second element is a list of digits, such as {2,{1,1,0}}. The compressed state specification depends on the len of the tag system. The first element is the phase of the state, or in other words, the remainder when the length of the uncompressed state is divided by len. The second element contains the elements at each position that is a multiple of len.
The default len is 3 because the Post tag system (0→00,1→1101) requires the first 3 elements to be dropped at every evolution step.
ResourceFunction["TagSystemConvert"] accepts one option:
"PaddingElement" | _ | symbol used as a placeholder element in a decompressed tag system state |