This website works better with JavaScript
Home
Explore
Sign In
jezv___
/
graphs
Watch
2
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Branch:
master
Branches
Tags
master
graphs
/
graph_types.py
graph_types.py
106 B
Permalink
History
Raw
1
2
3
4
5
6
7
import enum
@enum.unique
class graph_type(enum.IntFlag):
SIMPLE = 0
WEIGHTED = 1
DIRECTED = 2