Expand description
drft impact: list the nodes transitively affected by a change to the seed
nodes, as a flat, instruction-bearing list sorted by review priority. The
ranking metrics (impact_radius, betweenness) are computed inline over the
composed graph — there is no separate analyses layer.
Traversal is cycle-safe (a visited set), so a dependency cycle resolves without looping.
Structs§
- Impacted
- One impacted node with its causal chain and ranking metrics.
Enums§
- Direction
- Which way to walk from the seed. Inbound (the default) finds dependents — what must be reviewed when the seed changes.
Functions§
- compute
- Compute the impacted set for
seeds. Seeds must be node paths present ingraph; unknown seeds are skipped.