コード例 #1
0
ファイル: graph.py プロジェクト: kkonrad/cog-abm
 def __init__(self):
     """
     Initialize a graph.
     """
     common.__init__(self)
     labeling.__init__(self)
     self.node_neighbors = {}     # Pairing: Node -> Neighbors
コード例 #2
0
 def __init__(self):
     """
     Initialize a graph.
     """
     common.__init__(self)
     labeling.__init__(self)
     self.node_neighbors = {}  # Pairing: Node -> Neighbors
コード例 #3
0
ファイル: digraph.py プロジェクト: svn2github/python-graph2
 def __init__(self):
     """
     Initialize a digraph.
     """
     common.__init__(self)
     labeling.__init__(self)
     self.node_neighbors = {}     # Pairing: Node -> Neighbors
     self.node_incidence = {}     # Pairing: Node -> Incident nodes
コード例 #4
0
 def __init__(self):
     """
     Initialize a digraph.
     """
     common.__init__(self)
     labeling.__init__(self)
     self.node_neighbors = {}  # Pairing: Node -> Neighbors
     self.node_incidence = {}  # Pairing: Node -> Incident nodes
コード例 #5
0
ファイル: hypergraph.py プロジェクト: mbaez/SAP
 def __init__(self):
     """
     Initialize a hypergraph.
     """
     common.__init__(self)
     labeling.__init__(self)
     self.node_links = {}    # Pairing: Node -> Hyperedge
     self.edge_links = {}     # Pairing: Hyperedge -> Node
     self.graph = graph()    # Ordinary graph
コード例 #6
0
 def __init__(self):
     """
     Initialize a hypergraph.
     """
     common.__init__(self)
     labeling.__init__(self)
     self.node_links = {}  # Pairing: Node -> Hyperedge
     self.edge_links = {}  # Pairing: Hyperedge -> Node
     self.graph = graph()  # Ordinary graph
コード例 #7
0
 def __init__( self, G=None, inverted=False, reversed=False ):
     """
     Initialize a digraph.
     """
     if G:
         self.G = G
     else:
         self.G = {}
         
     common.__init__(self)
     labeling.__init__(self)