-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.py
48 lines (41 loc) · 1.33 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from BinaryAccessTree import BinaryAccessTree
def Lewko_Waters_algorithm(root):
counter = 1
matrix = []
rho = []
root.vector = [1]
def recursion_func(node):
nonlocal counter
nonlocal matrix
nonlocal rho
if node.value == 'or':
node.left.vector = node.vector.copy()
node.right.vector = node.vector.copy()
elif node.value == 'and':
node.left.vector_pad_to(counter)
node.left.vector.append(-1)
node.right.vector = node.vector.copy()
node.right.vector_pad_to(counter)
node.right.vector.append(1)
counter += 1
else:
matrix.append(node.vector.copy())
rho.append(node.value)
return
recursion_func(node.left)
recursion_func(node.right)
recursion_func(root)
for line in matrix:
for i in range(counter - len(line)):
line.append(0)
return matrix, rho
def run_test():
example_trees, formulas = BinaryAccessTree.get_examples()
for i in range(len(example_trees)):
matrix, rho = Lewko_Waters_algorithm(example_trees[i])
print('Access formula:', formulas[i])
print('ρ(i)', 'Matrix')
for j in range(len(matrix)):
print(rho[j], ' ', matrix[j])
print()
run_test()