Graph.prototype.iitr = function* (v) {
        yield* this.initr(v);
        yield* this.outitr(v);
    };