Ejemplo n.º 1
0
    public static void TestEdgeDisjointPath3()
    {
        var g = new DirectedGraph <int>();

        g.AddEdges(new int[] { 0, 1 });
        TestEdgeDisjointPath(g, 0, 1);
        TestEdgeDisjointPath(g, 1, 0);
    }