-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLogic_K4.py
461 lines (414 loc) · 18.6 KB
/
Logic_K4.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
__author__ = 'marcincuber'
# -*- coding: utf-8 -*-
"""
:Modal Logic K4- all transitive frames
"""
import syntax
import sols
import graph as gr
import networkx as nx
import copy
from collections import OrderedDict
import time
#import symbols
SET = syntax.Language(*syntax.ascii_setup)
'''
:Arrays to store the number of worlds and sets that correspond to each world
'''
Graphs = [] #initilise empty list of graphs
Sets = [] #initilise list to store formulas which will be available in each world
graph_formulas = [] #list of dictionaries-used formulas in node for graph
formulas = {} #single dictionary
formulas[1] = [] #first list for node 1
graph_formulas.append(formulas)#add it to list of dictionaries
'''
:Input String:
'''
str_psi = "Ds ^ (BDu ^ DDq) "
print "formula input: ", (str_psi)
'''
:Parsed string into tuple and list
'''
psi = syntax.parse_formula(SET, str_psi)
Sets.append(sols.recursivealpha(psi))
'''
:creating initial graph
'''
G = nx.MultiDiGraph()
uniq_Sets = [list(OrderedDict.fromkeys(l)) for l in Sets]
gr.create_graph_K(G,uniq_Sets)
Graphs.append(G)
'''
:functions to remove duplicates from the list
'''
def remove_duplicates(lista):
return list(set(lista))
def remove_dups_graph(graph):
for node in graph.nodes():
value_list = graph.node[node]
unique_list = remove_duplicates(value_list)
graph.node[node] = unique_list
'''
:resolving ALPHAS given a GRAPH
'''
def alpha_node(graph):
for node in graph.nodes():
set = []
value_list = graph.node[node]
for i in range(0,len(value_list)):
if isinstance(value_list[i], tuple):
alpha = sols.recursivealpha(value_list[i])
for j in alpha:
if isinstance(j, tuple):
if j not in set:
set.append(j)
else:
for prop in alpha:
set.append(prop)
elif isinstance(value_list[i], str):
set.append(value_list[i])
graph.node[node] = remove_duplicates(set)
'''
:resolving ALPHAS given a NODE in graph
'''
def alpha_node_solve(graph,node):
set = [] # array to store expanded alphas
value_list = graph.node[node]
for i in range(0,len(value_list)):
if isinstance(value_list[i], tuple):
alpha = sols.recursivealpha(value_list[i])
for j in alpha:
if isinstance(j, tuple):
if j not in set:
set.append(j)
else:
for prop in alpha:
if prop not in set:
set.append(prop)
elif isinstance(value_list[i], str):
if value_list[i] not in set:
set.append(value_list[i])
graph.node[node] = set
'''
:resolving BETAS given a NODE in graph
'''
def beta_node_solve(graph, node, formulas_in):
value_list = graph.node[node]
for i in range(0,len(value_list)):
value = value_list[i]
if value not in formulas_in[node]:
if value[0] =='or':
part1 = value[1]
part2 = value[2]
comp2 = graph.copy()
graph.node[node].remove(value)
comp2.node[node].remove(value)
graph.node[node].append(part1)
comp2.node[node].append(part2)
Graphs.append(comp2)
formulas_in[node].append(value)
copy_formulas_in = copy.deepcopy(formulas_in)
graph_formulas.append(copy_formulas_in)
for graph in Graphs:
alpha_node(graph)
elif value_list[i] == 'or':
part1 = value_list[i+1]
part2 = value_list[i+2]
comp2 = graph.copy()
graph.node[node] = []
comp2.node[node] = []
graph.node[node].append(part1)
comp2.node[node].append(part2)
Graphs.append(comp2)
formulas_in[node].append(value)
copy_formulas_in = copy.deepcopy(formulas_in)
graph_formulas.append(copy_formulas_in)
for graph in Graphs:
alpha_node(graph)
elif value[0] == 'not' and value[1][0] == 'and':
part1 = value[1][1]
part2 = value[1][2]
left_part = ('not',part1)
right_part = ('not',part2)
comp2 = graph.copy()
graph.node[node].remove(value)
comp2.node[node].remove(value)
graph.node[node].append(left_part)
comp2.node[node].append(right_part)
Graphs.append(comp2)
formulas_in[node].append(value)
copy_formulas_in = copy.deepcopy(formulas_in)
graph_formulas.append(copy_formulas_in)
for graph in Graphs:
alpha_node(graph)
elif value[0] == 'imply':
part1 = value[1]
part2 = value[2]
if part1[0] == 'not':
left_part = part1[1]
else:
left_part = ('not',part1)
comp2 = graph.copy()
graph.node[node].remove(value)
comp2.node[node].remove(value)
graph.node[node].append(left_part)
comp2.node[node].append(part2)
Graphs.append(comp2)
formulas_in[node].append(value)
copy_formulas_in = copy.deepcopy(formulas_in)
graph_formulas.append(copy_formulas_in)
for graph in Graphs:
alpha_node(graph)
elif value_list[i] == 'imply':
part1 = value_list[i+1]
part2 = value_list[i+2]
left_part = ('not',part1)
comp2 = graph.copy()
graph.node[node] = []
comp2.node[node] = []
graph.node[node].append(left_part)
comp2.node[node].append(part2)
Graphs.append(comp2)
formulas_in.append(value)
copy_formulas_in = copy.deepcopy(formulas_in)
graph_formulas.append(copy_formulas_in)
for graph in Graphs:
alpha_node(graph)
'''
:resolving DELTAS given a NODE in graph
'''
def delta_node_solve(graph, node, formulas_in):
delta_list = graph.node[node]
for i in range(len(delta_list)-1,-1,-1):
part1 = delta_list[i][0]
if part1 == 'diamond':
sub = delta_list[i]
if sub not in formulas_in[node]:
formulas_in[node].append(sub)
part2 = delta_list[i][1]
new_node= graph.number_of_nodes()+1
graph.add_edge(node,(new_node)) #adding new world and relation Rxx'
graph.node[node] = delta_list
graph.node[new_node] = [part2]
formulas_in[new_node] = []
alpha_node_solve(graph, node)
beta_node_solve(graph, node, formulas_in)
transitive_gamma_node(graph, new_node, formulas_in)
alpha_node_solve(graph, node)
beta_node_solve(graph, node, formulas_in)
previous = graph.predecessors(new_node)
for num in previous:
set = graph.node[num];
for j in range(0,len(set)):
if set[j][0] == 'not' and set[j][1][0] == 'diamond':
formula = ('not',set[j][1][1])
if formula not in graph.node[new_node]:
graph.node[new_node].append(formula)
alpha_node_solve(graph, new_node)
beta_node_solve(graph, new_node, formulas_in)
elif set[j][0] == 'box':
if set[j][1] not in graph.node[new_node]:
graph.node[new_node].append(set[j][1])
alpha_node_solve(graph, new_node)
beta_node_solve(graph, new_node, formulas_in)
elif part1 == 'not' and delta_list[i][1][0] == 'box':
sub = delta_list[i]
if sub not in formulas_in[node]:
formulas_in[node].append(sub)
part2 = ('not', delta_list[i][1][1])
new_node= graph.number_of_nodes()+1
graph.add_edge(node,(new_node)) #adding new world and relation Rxx'
graph.node[node] = delta_list
graph.node[new_node] = [part2]
formulas_in[new_node] = []
alpha_node_solve(graph, node)
beta_node_solve(graph, node, formulas_in)
transitive_gamma_node(graph, new_node, formulas_in)
alpha_node_solve(graph, node)
beta_node_solve(graph, node, formulas_in)
previous = graph.predecessors(new_node)
for num in previous:
set = graph.node[num];
for j in range(0,len(set)):
if set[j][0] == 'not' and set[j][1][0] == 'diamond':
formula = ('not',set[j][1][1])
if formula not in graph.node[new_node]:
graph.node[new_node].append(formula)
alpha_node_solve(graph, new_node)
beta_node_solve(graph, new_node, formulas_in)
elif set[j][0] == 'box':
if set[j][1] not in graph.node[new_node]:
graph.node[new_node].append(set[j][1])
alpha_node_solve(graph, new_node)
beta_node_solve(graph, new_node, formulas_in)
def transitive_gamma_node(graph, node, formulas_in):
parent = graph.predecessors(node)
status = True
if len(parent) == 0: #check if predecessor exists
return None
else:
previous = graph.predecessors(parent[0])
while status == True:
if len(previous) == 0:
status = False
return None
else:
for num_node in previous:
graph.add_edge(num_node,node)
set = graph.node[num_node]
for i in range(0,len(set)):
if set[i][0] == 'not' and set[i][1][0] == 'diamond':
formula = ('not',set[i][1][1])
if set[i] not in formulas_in[node]:
formulas_in[node].append(set[i])
if formula not in graph.node[node]:
graph.node[node].append(formula)
alpha_node_solve(graph, node)
beta_node_solve(graph,node,formulas_in)
elif set[i][0] == 'box':
if set[i] not in formulas_in[node]:
formulas_in[node].append(set[i])
if set[i][1] not in graph.node[node]:
graph.node[node].append(set[i][1])
alpha_node_solve(graph, node)
beta_node_solve(graph,node,formulas_in)
previous = graph.predecessors(previous[0])
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
""" Main loop iterating over graphs """
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
def main():
num_graph = 0
for graph in Graphs:
#dictionary of nodes: ticked formulas
formulas_in = graph_formulas[num_graph]
#initialise loop parameters
status = 1;
index = 1;
#initial solve for alpha
alpha_node(graph)
#iterate over all nodes and all formulas inside them
while status == 1:
length = len(graph.nodes())+1
for node in range(index,length):
#initial number of nodes
start_length = len(graph.nodes())
#set internal status to False
status_inside = False
#verify whether node exists
try:
value_node = graph.node[node]
except:
#move on if it does not exists
status_inside = True
pass
#when internal status is true add edge between them
if status_inside == True:
pass
else:
alpha_node_solve(graph,node)
beta_node_solve(graph, node, formulas_in)
delta_node_solve(graph,node,formulas_in)
alpha_node_solve(graph,node)
beta_node_solve(graph, node, formulas_in)
delta_node_solve(graph, node, formulas_in)
#new variable to store current node
current_node = node
#number of node at this stage
new_num_nodes = len(graph.nodes())
#deal with new nodes and compare them with existing ones
if new_num_nodes-current_node > 0:
for i in range(new_num_nodes,current_node,-1):
#if the last new node is the same as
try:
if graph.node[current_node] == graph.node[new_num_nodes] and ((current_node,new_num_nodes) in graph.edges()):
graph.remove_node(new_num_nodes)
new_num_nodes = len(graph.nodes())
pass
for all_nodes in range(1,new_num_nodes-1):
if (graph.node[new_num_nodes]==graph.node[all_nodes]) and ((all_nodes,new_num_nodes) not in graph.edges()):
graph.add_edge(current_node,all_nodes)
graph.remove_node(new_num_nodes)
new_num_nodes = len(graph.nodes())
break
except:
pass
try:
temp_node = graph.node[i]
except:
pass
status_inside2 = False
for exist in range(1,current_node):
if temp_node == graph.node[exist] and temp_node != exist:
#if the same node exists set status to true and exit the loop
status_inside2 = True
break
#deal with the node that already exists
if status_inside2 == True:
#remove the new_node which already exists
try:
graph.remove_node(i)
except:
continue
#add an edge from the node to existing node
graph.add_edge(current_node,exist)
#get currrent list of nodes in the graph
list_of_nodes = graph.nodes()
#check nodes that have id > than deleted node and change ids, ids cannot have gaps in numbering
new_counter = i
temp_value = 0
for sig_node in list_of_nodes:
#when id of the node is greater than the deleted one deal with it
if (sig_node > new_counter+temp_value) and ((new_counter+temp_value) not in list_of_nodes):
#add missing node
try:
graph.add_node(new_counter+temp_value)
#assign set of formulas to a new node
graph.node[new_counter+temp_value] = graph.node[sig_node]
except:
graph.remove_node(new_counter+temp_value)
break
#scan predecessor of the higher node and deal with edges
predecessor = graph.predecessors(sig_node)
for pred in predecessor:
graph.add_edge(pred,new_counter+temp_value)
#after we dealt with edges we can remove the higher order node
graph.remove_node(sig_node)
#get the current list of nodes
list_of_nodes = graph.nodes()
# increment temp_value in case there are more nodes in the list
temp_value += 1
end_length = len(graph.nodes())
if start_length < end_length:
diff = end_length - start_length
index = index+1
elif index < len(graph.nodes()):
index = index+1
else:
status = 0;
#increment number of graphs to get correct list with used formulas
num_graph += 1
'''
:finding inconsistencies in the model
'''
index_inconsistent =[]
for i in range(0,len(Graphs)):
graph = Graphs[i]
for node in graph.nodes():
consistent_list = graph.node[node]
status = sols.inconsistent(consistent_list)
if status == True:
index_inconsistent.append(i)
else:
status == False
index_inconsistent = list(set(index_inconsistent))
# removing inconsistent graphs- models
if index_inconsistent is not []:
for num in reversed(index_inconsistent):
del Graphs[num];
'''
:display and save as pictures all the exiting graphs in the list
'''
gr.final_graphs(Graphs,psi)
t0 = time.clock()
main()
print ((time.clock() - t0), " seconds process time")