The decode tree collects the greedy path and the top-k branches. It is computed from the displayed logits, top-k rule, and tie-break.
highlighted = computed this step
The decode tree
The tree shows the greedy path and the top-k branches for the two displayed steps. Every branch comes from exact logit ordering. It is a structural view of the same selections, not a separate computation.
tree from exact selections
Greedy path
The selected path is a then b. The first step keeps top-k branches a and c; the second step keeps b and c. The tree therefore records both the single greedy path and the wider deterministic branch list.
a→b
Summary
The tree is deterministic for the shown logits, top-k value, and tie-break. It is a structural view of the same exact choices, with named probabilities kept out of the branch decision.