PsyFindier/findpsy.py

52 lines
900 B
Python
Raw Normal View History

2016-03-17 13:47:11 +00:00
#!/usr/bin/python
"""
input file - connection matrix for a graph
numbers with ; as separator
ex.
0;1;2
1;0;3
2;3;0
"""
import sys
#Initial node for search \ start element in result chain.
start = 0;
all_paths = []
def deep (path, result):
2016-03-17 14:58:52 +00:00
if all(v > 0 for v in result):
print "PATH: {0}".format(path)
all_paths.append(path)
return 1
for i in range(path[-1], len(result)):
if result[i] == 0:
2016-03-17 13:47:11 +00:00
new_path = list(path)
new_result = list(result)
new_path.append(i)
for j in range(0, len(new_result)):
new_result[j] = new_result[j] | matrix[i][j]
2016-03-17 14:58:52 +00:00
deep (new_path, new_result)
2016-03-17 13:47:11 +00:00
return 0
f = open (sys.argv[1])
matrix = [ map(int,line.split(';')) for line in f ]
while True:
my_path = [ start ]
my_result = list(matrix[start])
deep( my_path, my_result )
if len(matrix[0]) > start + 1:
start += 1
else:
break