Trie Node
data class TrieNode(val parent: TrieNode? = null, val q: Int, val r: Int, val childrenIndices: MutableList<Int?> = MutableList(10) { null })(source)
Data class defining a trie node for the SymmetricPreComputedVisionTries.
Parameters
parent
The parent node.
q
The (q) component of the coordinate in the hexagonal grid.
r
The (r) component of the coordinate in the hexagonal grid.
children Indices
The indices of the children nodes.