read number of vertices and edges from commandline
This commit is contained in:
parent
ae06cb361b
commit
5525015ff1
1 changed files with 9 additions and 11 deletions
20
cycles.py
20
cycles.py
|
@ -52,18 +52,16 @@ procedure circuit_enumeration;
|
||||||
end;
|
end;
|
||||||
"""
|
"""
|
||||||
|
|
||||||
A = [[] for a in range(5)]
|
import sys
|
||||||
|
|
||||||
A[0].append(1)
|
if len(sys.argv) < 3:
|
||||||
A[0].append(4)
|
print "usage: %s num_vertices [v1,v2...]"%(sys.argv[0])
|
||||||
A[1].append(4)
|
|
||||||
A[2].append(0)
|
A = [[] for a in range(int(sys.argv[1]))]
|
||||||
A[2].append(3)
|
|
||||||
A[2].append(4)
|
for edge in sys.argv[2:]:
|
||||||
A[3].append(0)
|
v1,v2 = edge.split(',', 1)
|
||||||
A[3].append(2)
|
A[int(v1)].append(int(v2));
|
||||||
A[3].append(4)
|
|
||||||
A[4].append(3)
|
|
||||||
|
|
||||||
def print_point_stack():
|
def print_point_stack():
|
||||||
for p in point_stack:
|
for p in point_stack:
|
||||||
|
|
Loading…
Reference in a new issue