This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class undirected_graph(dict): | |
"""An undirected graph edge list | |
In an undirected graph edges are symmetric, so vertex order doesn't matter. | |
Store lists or dictionaries to represent attributes. | |
>>> a = undirected_graph() | |
>>> a[4,5] = True | |
>>> a[5,4] | |
True |
NewerOlder