Graph.prototype.dpitr = function* (u) {
        for (const {v} of this.pred.get(u)) yield v;
    };