當前位置: 首頁>>代碼示例>>Python>>正文


Python graph.Vertex類代碼示例

本文整理匯總了Python中graph.Vertex的典型用法代碼示例。如果您正苦於以下問題:Python Vertex類的具體用法?Python Vertex怎麽用?Python Vertex使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Vertex類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_add_edge_normal

def test_add_edge_normal():
    a = Vertex("A5")
    b = Vertex("A6")
    c = Edge(b)
    a.add_edge(c)
    assert len(a.edges) == 1
    assert c in a.edges
開發者ID:mmweber2,項目名稱:adm,代碼行數:7,代碼來源:test_graph.py

示例2: test_find_path_direct_connection

def test_find_path_direct_connection():
    a = Vertex("A13")
    b = Vertex("A14")
    a.add_edge(Edge(b))
    assert find_path(a, b) == [a, b]
    # Path is only in one direction
    assert find_path(b, a) == []
開發者ID:mmweber2,項目名稱:adm,代碼行數:7,代碼來源:test_graph.py

示例3: test_extra_pipes

def test_extra_pipes():
    name1 = Vertex._make_test_vertex()
    name2 = Vertex._make_test_vertex()
    s = StringIO("2\n{0}\n{1}\n{0}|{1}|5|2\n{1}|{0}|2|5".format(name1, name2))
    g = graph_from_file(s)
    assert g.size() == 2
    assert g.is_connected()
開發者ID:mmweber2,項目名稱:adm,代碼行數:7,代碼來源:test_file_graph.py

示例4: test_valid_with_weights

def test_valid_with_weights():
    name1 = Vertex._make_test_vertex()
    name2 = Vertex._make_test_vertex()
    s = StringIO("2\n{0}\n{1}\n{0}|{1}|5\n{1}|{0}|2".format(name1, name2))
    g = graph_from_file(s)
    assert g.size() == 2
    assert g.is_connected()
開發者ID:mmweber2,項目名稱:adm,代碼行數:7,代碼來源:test_file_graph.py

示例5: test_no_edges

def test_no_edges():
    name1 = Vertex._make_test_vertex()
    name2 = Vertex._make_test_vertex()
    s = StringIO("2\n{}\n{}".format(name1, name2))
    g = graph_from_file(s)
    assert g.size() == 2
    assert not g.is_connected()
開發者ID:mmweber2,項目名稱:adm,代碼行數:7,代碼來源:test_file_graph.py

示例6: test_vertex_valid_edges

def test_vertex_valid_edges():
    """Test Vertex creation with a list of already-existing Edges."""
    b = Vertex(Vertex._make_test_vertex())
    c = Vertex(Vertex._make_test_vertex())
    d = Edge(b)
    e = Edge(c)
    a = Vertex(Vertex._make_test_vertex(), [d, e])
    assert a.edges == [d, e]
開發者ID:mmweber2,項目名稱:adm,代碼行數:8,代碼來源:test_graph.py

示例7: test_add_edge_duplicate

def test_add_edge_duplicate():
    a = Vertex("A7")
    b = Vertex("A8")
    c = Edge(b)
    d = Edge(b)
    a.add_edge(d)
    a.add_edge(c)
    assert len(a.edges) == 2
    assert d in a.edges
    assert c in a.edges
開發者ID:mmweber2,項目名稱:adm,代碼行數:10,代碼來源:test_graph.py

示例8: __init__

 def __init__(self, atomType=None, radicalElectrons=None, spinMultiplicity=None, charge=None, label=''):
     Vertex.__init__(self)
     self.atomType = atomType or []
     for index in range(len(self.atomType)):
         if isinstance(self.atomType[index], str):
             self.atomType[index] = atomTypes[self.atomType[index]]
     self.radicalElectrons = radicalElectrons or []
     self.spinMultiplicity = spinMultiplicity or []
     self.charge = charge or []
     self.label = label
開發者ID:ajalan,項目名稱:RMG-Py,代碼行數:10,代碼來源:group.py

示例9: test_top_sort_chain

def test_top_sort_chain():
    a = Vertex(Vertex._make_test_vertex())
    b = Vertex(Vertex._make_test_vertex())
    c = Vertex(Vertex._make_test_vertex())
    a.add_edge(Edge(b))
    b.add_edge(Edge(c))
    g = Graph([a, b, c])
    assert g.top_sort() == [a, b, c]
開發者ID:mmweber2,項目名稱:adm,代碼行數:8,代碼來源:test_graph.py

示例10: __init__

 def __init__(self, element=None, coord=np.array([0.0, 0.0, 0.0]), radicalElectrons=0, spinMultiplicity=1, implicitHydrogens=0, charge=0, label=''):
     Vertex.__init__(self)
     if isinstance(element, str):
         self.element = elements.__dict__[element]
     else:
         self.element = element
     self.coord = coord
     self.radicalElectrons = radicalElectrons
     self.spinMultiplicity = spinMultiplicity
     self.implicitHydrogens = implicitHydrogens
     self.charge = charge
     self.label = label
     self.atomType = None
開發者ID:chasquiwan,項目名稱:RotSpecPy,代碼行數:13,代碼來源:molecule.py

示例11: test_has_cycle_two_vertices_linked

def test_has_cycle_two_vertices_linked():
    a = Vertex(Vertex._make_test_vertex())
    b = Vertex(Vertex._make_test_vertex())
    a.add_edge(Edge(b))
    b.add_edge(Edge(a))
    g = Graph([a, b])
    assert g.has_cycle()
開發者ID:mmweber2,項目名稱:adm,代碼行數:7,代碼來源:test_graph.py

示例12: test_top_sort_cycle

def test_top_sort_cycle():
    a = Vertex(Vertex._make_test_vertex())
    b = Vertex(Vertex._make_test_vertex())
    a.add_edge(Edge(b))
    b.add_edge(Edge(a))
    g = Graph([a, b])
    assert_raises(ValueError, g.top_sort)
開發者ID:mmweber2,項目名稱:adm,代碼行數:7,代碼來源:test_graph.py

示例13: test_is_connected_two_doubly_connected

def test_is_connected_two_doubly_connected():
    a = Vertex(Vertex._make_test_vertex())
    b = Vertex(Vertex._make_test_vertex())
    a.add_edge(Edge(b))
    b.add_edge(Edge(a))
    g = Graph([a, b])
    assert g.is_connected()
開發者ID:mmweber2,項目名稱:adm,代碼行數:7,代碼來源:test_graph.py

示例14: TestDagShortestPathsModified

 def TestDagShortestPathsModified(self):
     u = Vertex('u')
     v = Vertex('v')
     w = Vertex('w')
     z = Vertex('z')
     u.weight = 1
     v.weight = 2
     w.weight = 3
     z.weight = 4
     vertices = [u, v, w, z]
     edges = [(u, v), (v, w), (v, z)]
     G = Graph(vertices, edges)
     self.assertEquals(dag_shortest_paths_modified(G, u), [u, v, z])
開發者ID:Firkraag,項目名稱:algorithm,代碼行數:13,代碼來源:graph_test.py

示例15: test_find_path_chain

def test_find_path_chain():
    a = Vertex("A15")
    b = Vertex("A16")
    c = Vertex("A17")
    a.add_edge(Edge(b))
    b.add_edge(Edge(c))
    assert find_path(a, c) == [a, b, c]
開發者ID:mmweber2,項目名稱:adm,代碼行數:7,代碼來源:test_graph.py


注:本文中的graph.Vertex類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。