UNPKG

gramoloss

Version:

Graph theory package for edition and computation

5 lines (4 loc) 213 B
import { Graph } from "../graph"; import { VertexIndex } from "../vertex"; export declare function minDFVS(g: Graph): Set<VertexIndex>; export declare function isDFVS(g: Graph, subset: Set<VertexIndex>): boolean;