Exemplo n.º 1
0
        static Graph GetModel()
        {
            var m = new Graph();
            m.Edges = new List<Edge>() { new Edge() { Id = "1", Path = new List<string>() { "2", "3" } } };

            return m;
        }
Exemplo n.º 2
0
 public VertexToDummyCreateAndLookupTable(Graph graph)
 {
     DummyVertices = new Dictionary<string, DummyVertex>();
     SetVertices(graph.Vertices);
 }