@eagleoutice/flowr - v2.15.8
    Preparing search index...

    Where an abstract state arrives from, and which way the branch went if the step was one.

    For if(u) a else b the step onto a carries { id: <u>, branch: { id: <the if>, when: true } }, so the predecessor is the condition and when is the outcome it had.

    interface AbsintPredecessor {
        branch?: ControlDependency;
        id: NodeId;
    }
    Index

    the branch taken to get here, undefined if control simply flows on

    id: NodeId

    the vertex the abstract state comes from