The full forward DAG puts every exact node value in one place. It is also the trust boundary: displayed weights and biases drive the recomputation.
Every node value at once
The full DAG shows the path x to z to h to yhat to L. Each label is recomputed from the displayed weights and biases.
x→z→h→y^→L
The visible source
The edge weights, b1=-1, b2=0, and c=0 are visible, so the diagram can be recomputed.
b1=−1,b2=0,c=0
Summary
The graph is the trust boundary: stale weights, stale biases, or stale node values are rejected by the renderer.
displayed graph⇒recomputed values