-
Notifications
You must be signed in to change notification settings - Fork 0
/
QBDef.py
1307 lines (1077 loc) · 49.5 KB
/
QBDef.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
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#==============================================================================
#==================================== QBDeF ===================================
#==================== Noel Arteche (noel.arteche@gmail.com) ===================
#=============================== __ July 2020 __ ==============================
#==============================================================================
from sys import argv
from lark import Lark, Transformer, v_args
from itertools import chain
from time import time
## Representation imports:
from enum import Enum
from time import time
from sys import exit
from os import system, remove
from os.path import exists
try:
input = raw_input # for Python2 compatibility
except NameError:
pass
#==============================================================================
#=============================== Grammar (Lark) ===============================
#==============================================================================
grammar = '''
start: value* formula_family? -> return_formula
value : "value:" NAME "=" expression ";" -> handle_value
formula_family : name format parameters? variables blocks output_block
name: "name:" FAMILY_NAME ";" -> set_name
format: "format:" FORMAT ";" -> set_format
parameters: "parameters:" "{" parameter_declaration+ "}"
parameter_declaration: NAME ":" PARAM_TYPE ("," expression)* ";" -> add_parameter
variables : "variables:" "{" variable_declaration+ "}"
variable_declaration: NAME ("(" indices ")" ("where" index_range ("," index_range)*)?)? ";" -> add_variable
indices : INDEX ("," INDEX)*
index_range : indices "in" (expression | INDEX | NAME) ".." (expression | INDEX | NAME)
blocks: "blocks:" "{" block_definition (block_definition | operator_declaration | quantifier_declaration)+ "}"
block_definition: "define block" single_block_def -> add_blocks
| "define blocks" grouping? "{" single_block_def+ "}" conditions? ";" -> add_blocks
single_block_def: BLOCK_NAME ("(" indices ")")? ":=" block_body ";"
block_body: brick ("," brick)*
brick: /all blocks in/ BLOCK_NAME
| NEGATION? BLOCK_NAME ("(" indices ")")?
| NEGATION? NAME ("(" indices ")")?
grouping: "grouped in" BLOCK_NAME
conditions: "where" condition ("," condition)*
condition: index_range | assignment | other_condition
assignment: INDEX "=" expression
other_condition: expression
quantifier_declaration: "block" BLOCK_NAME ("(" indices ")")? "quantified with" QUANTIFIER ";" -> add_attributes
| "blocks" BLOCK_NAME ("(" indices ")")? ("," BLOCK_NAME ("(" indices ")")?)+ "quantified with" QUANTIFIER ";" -> add_attributes
| "all blocks in" BLOCK_NAME "quantified with" QUANTIFIER ";" -> add_attribute_to_grouping
operator_declaration: "block" BLOCK_NAME ("(" indices ")")? "operated with" OPERATOR ";" -> add_attributes
| "blocks" BLOCK_NAME ("(" indices ")")? ("," BLOCK_NAME ("(" indices ")")?)+ "operated with" OPERATOR ";" -> add_attributes
| "all blocks in" BLOCK_NAME "operated with" OPERATOR ";" -> add_attribute_to_grouping
output_block: "output block:" BLOCK_NAME ("(" indices ")")? ";" -> add_final_block
NAME : /(?!all blocks in)[a-z\u0370-\u03ff\U0001F1E0-\U0001F1FF\U0001F300-\U0001F5FF\U0001F600-\U0001F64F\U0001F680-\U0001F6FF\U0001F700-\U0001F77F\U0001F780-\U0001F7FF\U0001F800-\U0001F8FF\U0001F900-\U0001F9FF\U0001FA00-\U0001FA6F\U0001FA70-\U0001FAFF\U00002702-\U000027B0\U000024C2-\U0001F251][^,:;(){}\s]*/
//NAME : /[a-z]([_?a-zA-Z0-9])*/ old name regex
FAMILY_NAME : /[^;]+/ // old version: /[a-zA-Z]([ ?_?a-zA-Z0-9])*(?=;)/
FORMAT : "CNF" | "circuit-prenex" | "circuit-nonprenex"
PARAM_TYPE : "int" | "str" | "float" | "list" | "bool" | "other" // the names used by Python
?expression : /[0-9]+/ | "`" /[^`]+/ "`" //| /[^`,;\]]+/
INDEX : /[a-z][^,:;(){}\s]*/ | /[0-9]+/
BLOCK_NAME : /[A-Z\u0370-\u03ff\U0001F1E0-\U0001F1FF\U0001F300-\U0001F5FF\U0001F600-\U0001F64F\U0001F680-\U0001F6FF\U0001F700-\U0001F77F\U0001F780-\U0001F7FF\U0001F800-\U0001F8FF\U0001F900-\U0001F9FF\U0001FA00-\U0001FA6F\U0001FA70-\U0001FAFF\U00002702-\U000027B0\U000024C2-\U0001F251][^,:;(){}\s]*/
//BLOCK_NAME : /[A-Z]([_?a-zA-Z0-9])*/ old block_name regex
NEGATION : "-" | "¬"
QUANTIFIER : "E" | "A" | "∃" | "∀"
OPERATOR: "AND" | "OR" | "XOR" | "=>" | "<=>" | "⊕" | "∨" | "∧" | "→" | "↔" | "⇔" | "⇒" | "ITE" | "if-then-else" | "⤙"
COMMENT: /\/\*((\*[^\/])|[^*])*\*\//
RESERVED: "define" | "block" | "blocks" | "grouped" | "in" | "quantified" | "operated" | "with" | "output" | "all" | "where" | "name" | "format" | "parameters" | "variables"
%import common.NUMBER
%import common.WS_INLINE
%import common.NEWLINE
%ignore WS_INLINE
%ignore NEWLINE
%ignore COMMENT
'''
#==============================================================================
#=============================== REPRESENTATION ===============================
#==============================================================================
# We have classes representing: quantifiers, operators, formats, parameters,
# blocks and QBF.
#==============================================================================
#============ Operator, quantifier and format representations =================
#==============================================================================
class Quantifier(Enum):
EXISTS = 'exists'
FORALL = 'forall'
class Operator(Enum):
OR = 'or'
AND = 'and'
XOR = 'xor'
IMP = 'imp'
DIMP = 'dimp'
ITE = 'ite'
class Format(Enum):
circuit_PRENEX = 'circuit-prenex'
circuit_NON_PRENEX = 'circuit-nonprenex'
CNF = 'CNF'
#==============================================================================
#=========================== Parameter representation =========================
#==============================================================================
class Parameter:
def __init__(self, pName = "", pType="", pValue = None, pCons = [], pEval = []):
self.paramName = pName
self.paramType = pType
self.paramValue = pValue
self.paramConstraints = pCons
self.paramEvaluatedConstraints = pEval
def get_name(self):
return self.paramName
#==============================================================================
#============================= Block representation ===========================
#==============================================================================
class Block:
def __init__(self, bName = "", bId = "", bBody = [], bGroup = None, bAtt = None):
self.blockName = bName
self.blockId = bId
self.blockBody = bBody
self.blockGroup = bGroup
self.blockAtt = bAtt
def add_attribute(self, bAtt):
if self.blockAtt:
print("ATTRIBUTE ERROR: block {} already has an attribute ({}) and thus it cannot be assigned another one ({}).".format(self.blockName, self.blockAtt.value, bAtt))
exit()
if bAtt == "E" or bAtt == "∃":
self.blockAtt = Quantifier.EXISTS
elif bAtt == "A" or bAtt == "∀":
self.blockAtt = Quantifier.FORALL
elif bAtt == "XOR" or bAtt == "⊕":
self.blockAtt = Operator.XOR
elif bAtt == "OR" or bAtt == "∨":
self.blockAtt = Operator.OR
elif bAtt == "AND" or bAtt == "∧":
self.blockAtt = Operator.AND
elif bAtt == "=>" or bAtt == "→" or bAtt == "⇒":
self.blockAtt = Operator.IMP
elif bAtt == "<=>" or bAtt == "↔" or bAtt == "⇔":
self.blockAtt = Operator.DIMP
elif bAtt == "ITE" or bAtt == "if-then-else" or bAtt == "⤙":
self.blockAtt = Operator.ITE
else:
print("ATTRIBUTE ERROR: attribute {} is not a valid input.".format(bAtt))
exit()
def get_body(self):
return self.blockBody
def get_name(self):
return self.blockName
def get_id(self):
return self.blockId
def get_attribute_str(self):
if not self.blockAtt:
return("None")
return str(self.blockAtt.value)
def get_attribute(self):
return self.blockAtt
def has_attribute(self):
if self.blockAtt:
return True
else:
return False
#==============================================================================
#============================= QBF representation =============================
#==============================================================================
class QBF:
def __init__(self):
self.values = {}
self.name = ""
self.format = None
self.parameters = []
self.idCounter = 0
self.variables = {}
self.blocks = {}
self.block_contents = {}
self.groupings = {}
self.final = None
self.QCIR_str = None
self.QDIMACS_str = None
self.non_prenex_QCIR_str = None
self.QCIR_blackboard = ""
self.QCIR_bb_contents = set()
# ======================== Name ========================
def get_name(self):
return self.name
def set_name(self, name):
self.name = name
# ======================= Format =======================
def get_format(self):
return self.format
def get_format_str(self):
if not self.format:
return "None"
else:
return str(self.format.value)
def set_format(self, f):
if f == 'CNF':
self.format = Format.CNF
elif f == 'circuit-prenex':
self.format = Format.circuit_PRENEX
elif f == 'circuit-nonprenex':
self.format = Format.circuit_NON_PRENEX
else:
print("FORMAT ERROR: {} is not one of the valid formats! It should be: CNF, circuit-prenex or circuit-nonprenex.".format(f))
exit()
# ======================= Values =======================
def get_values(self):
return self.values
def set_values(self, newValues):
self.values = newValues
def get_value(self, name):
try:
return self.values[name]
except:
print("VALUE ERROR: Value for {} does not exist.".format(paramName))
exit()
def add_value(self, name, expression):
self.values[name] = self.evaluate(expression)
# ===================== Parameters =====================
def get_parameters(self):
return self.parameters
def set_parameters(self, params):
self.parameters = params
def add_parameter(self, paramName, paramType, cons):
value = self.get_value(paramName)
constraints = []
for expr in cons:
res = self.evaluate(expr)
constraints.append(res)
for i in range(len(constraints)):
if not constraints[i]:
print("PARAMETER ERROR: Constraint \'{}\' for parameter {} was violated.".format(cons[i], paramName))
exit()
self.parameters.append(Parameter(paramName, paramType, value, cons, constraints))
# ===================== Variables =====================
def get_variables(self):
return self.variables
def set_variables(self, newVars):
self.variables = newVars
def get_variable_id(self, normVarName):
try:
return self.variables[normVarName]
except:
print("VARIABLE ERROR: Variable {} has not been declared.".format(normVarName))
exit()
def add_variables(self, varName, varIndices=[], varRanges=[]):
if varIndices and varRanges:
for valued_indices in self.iterate(varRanges):
self.save_variable(self.normalize_name(varName, varIndices, valued_indices))
else:
self.save_variable(self.normalize_name(varName, varIndices))
def save_variable(self, normVarName):
if normVarName in self.variables:
print("VARIABLE ERROR: Variable {} is being declared more than once!".format(normVarName))
exit()
else:
self.idCounter = self.idCounter + 1
self.variables[normVarName] = self.idCounter
# ===================== Blocks =======================
def get_block(self, blockId):
try:
return self.block_contents[blockId]
except:
print("BLOCK ERROR: block {} is not defined.".format(blockId))
exit()
def add_blocks(self, definitions, conditions, grouping=None):
# a block definition looks like:
# [('X', ['i', 'j']), [((sign, name), indices), ...]]
ids_for_grouping = []
for definition in definitions:
left = definition[0]
bricks = definition[1]
name = left[0]
for values in self.iterate(conditions):
left_values = values.copy()
substitutedIndices = self.substitute(left[1], left_values)
new_left = dict()
for ix in left_values:
if ix in left[1]:
new_left[ix] = left_values[ix]
left_values = new_left
blockName = self.normalize_name(name, substitutedIndices)
if self.is_defined(blockName):
continue
else:
self.save_block(blockName)
ids_for_grouping.append(self.get_brick_id(blockName))
contents = []
cs = set()
for i in range(len(bricks)):
if bricks[i][0] == "all blocks in":
contents.append(self.get_bricks_in_grouping(bricks[i][1]))
else:
contents.append([])
for i in range(len(bricks)):
for valuedIndices in self.iterate(conditions, left_values):
brick = bricks[i]
if brick[0] != "all blocks in":
bSign = brick[0][0]
bName = brick[0][1]
indices = self.substitute(brick[1], left_values, valuedIndices)
brickId = self.get_brick_id(self.normalize_name(bName, indices, brick[1]))
brickIdWithSign = int(bSign + str(brickId))
if brickIdWithSign not in cs:
contents[i].append(brickIdWithSign)
cs.add(brickIdWithSign)
contents = [elem for b in contents for elem in b]
self.save_block_contents(blockName, contents, grouping)
self.save_grouping(grouping, ids_for_grouping)
def get_brick_id(self, normName):
if normName in self.variables:
return self.variables[normName]
elif normName in self.blocks:
return self.blocks[normName]
else:
print("BRICK ERROR: Block or variable {} has not been declared.".format(normName))
exit()
def save_block(self, normBlockName):
if normBlockName in self.blocks:
print("BLOCK ERROR: Block {} is being declared more than once!".format(normBlockName))
exit()
else:
self.idCounter = self.idCounter + 1
self.blocks[normBlockName] = self.idCounter
def save_block_contents(self, normName, contents, grp):
bId = self.get_brick_id(normName)
self.block_contents[bId] = Block(normName, bId, contents, grp)
def save_grouping(self, grp, ids):
if grp:
self.groupings[grp] = ids
def get_bricks_in_grouping(self, grp):
try:
return self.groupings[grp]
except:
print("GROUPING ERROR: grouping {} does not exist.".format(grp))
def update_block_with_attribute(self, blockId, att):
block = self.get_block(blockId)
block.add_attribute(att)
self.block_contents[blockId] = block
# ===================== Attributes =====================
def add_attribute(self, blockName, blockIndices, att):
normName = self.normalize_name(blockName, blockIndices)
blockId = self.get_brick_id(normName)
self.update_block_with_attribute(blockId, att)
def add_attributes_grp(self, grp, att):
if grp not in self.groupings:
print("GROUPING ERROR: grouping name {} is not defined".format(grp))
exit()
else:
for block_id in self.groupings[grp]:
self.update_block_with_attribute(block_id, att)
# =================== Final block ======================
def save_final_block(self, name, indices):
normName = self.normalize_name(name, indices)
blockId = self.get_brick_id(normName)
self.final = blockId
# ===================== Outputs ========================
# _______________________ QCIR _________________________
"""
Generates a string with the formula written in QCIR.
"""
def get_QCIR_string(self):
if self.format == Format.circuit_NON_PRENEX:
print("FORMAT ERROR: the given formula is in non-prenex format; the only possible output is non-prenex QCIR.")
exit()
if self.format == Format.CNF or self.format == Format.circuit_PRENEX:
if not self.QCIR_str:
self.generate_QCIR()
return self.QCIR_str
def generate_QCIR(self):
# opening line
in_qcir_str = "#QCIR-G14\n"
final = self.final
final_contents = self.block_contents[final].get_body()
# add quantifiers:
prefix = [self.block_contents[final_contents[0]]]
for brick in prefix:
in_qcir_str += self.process_quant_block(brick)
# add output gate
in_qcir_str += "output({})\n".format(final_contents[1])
# write gates
self.write_on_blackboard(self.block_contents[final_contents[1]])
in_qcir_str += self.QCIR_blackboard
self.QCIR_str = in_qcir_str
return in_qcir_str
def block_to_string_gates(self, block):
operator = block.get_attribute_str()
output = str(block.get_id())
body = block.get_body()
if operator == "imp":
gate_str = output + " = " + "or" + "("
imp1 = ""
imp2 = ""
if len(body) != 2:
print("OPERATOR ERROR: Cannot use operator {} on block {} because the number of bricks is not two.".format("→ (implication)", block.get_name()))
exit()
imp1 = body[0]
imp2 = body[1]
gate_str += str(-1 * int(imp1)) + ", " + str(imp2) + ")"
return [gate_str]
elif operator == "dimp":
aux1 = self.idCounter + 1
self.idCounter += 1
aux2 = self.idCounter + 1
self.idCounter += 1
imp1 = ""
imp2 = ""
if len(body) != 2:
print("OPERATOR ERROR: Cannot use operator {} on block {} because the number of bricks is not two.".format("↔ (double implication)", block.get_name()))
exit()
imp1 = body[0]
imp2 = body[1]
gate_str = output + " = " + "and" + "(" + str(aux1) + ", " + str(aux2) + ")"
left = str(aux1) + " = or(" + str(-1 * int(imp1)) + ", " + str(imp2) + ")"
right = str(aux2) + " = or(" + str(-1 * int(imp2)) + ", " + str(imp1) + ")"
return [left, right, gate_str]
else:
if operator == "None":
if len(body) >= 2:
print("OPERATOR ERROR: Block {} has been assigned no valid operator.".format(block.get_name()))
exit()
else:
operator = "or"
elif operator == "xor" and len(body) != 2:
print("OPERATOR ERROR: Cannot use operator {} on block {} because the number of bricks is not two.".format("⊕ (XOR)", block.get_name()))
exit()
elif operator == "ite" and len(body) != 3:
print("OPERATOR ERROR: Cannot use operator {} on block {} because the number of bricks is not three.".format("⊕ (XOR)", block.get_name()))
exit()
body = str(body)
return [output + " = " + operator + "(" + body[1:-1] + ")"]
def write_on_blackboard(self, block):
# first make sure the operands of the gate are in the blackboard
for operand in block.get_body():
operand = abs(operand)
if (operand in self.block_contents) and not (operand in self.QCIR_bb_contents):
self.write_on_blackboard(self.block_contents[operand])
# mark this gate as processed
self.QCIR_bb_contents.add(block.get_id())
# write the gate on the blackboard
for str_gate in self.block_to_string_gates(block):
self.QCIR_blackboard += str_gate + "\n"
# Deprecated, don't use!
def process_quant_block(self, block):
if block.has_attribute():
q_block_str = "{}(".format(block.get_attribute_str())
q_block_str += self.to_str_list(block.get_body())
q_block_str = q_block_str[:-2] + ")\n"
return q_block_str
else:
body = block.get_body()
several_str = ""
for brick in body:
several_str += self.process_quant_block(self.block_contents[brick])
return several_str
# Deprecated, don't use!
def to_str_list(self, bricks):
str_list = ""
for brick in bricks:
ref = abs(brick)
sign = -1 if brick < 0 else 1
if ref in self.variables.values():
str_list += str(brick) + ", "
else:
block = self.block_contents[ref]
body = block.get_body()
sub_list = self.to_str_list(body)
sub_list = sub_list.split(",")
sub_list = sub_list[:-1]
for lit in sub_list:
lit_int = int(lit)
str_list += str(sign*lit_int) + ", "
return str_list
# Deprecated, don't use!
def get_gates_str_list(self, gates):
gates_str_list = []
gate_str = ""
processed = set()
while gates:
g = gates.pop(0)
if g.get_name() in processed:
continue
else:
processed.add(g.get_name())
if g.get_attribute_str() == "None":
gate_str = str(g.get_id()) + " = " + "or" + "("
elif g.get_attribute_str() == "imp":
gate_str = str(g.get_id()) + " = " + "or" + "("
imp1 = ""
imp2 = ""
i = 0
for sub_gate in g.get_body():
if i == 0:
imp1 = sub_gate
i = 1
else:
imp2 = sub_gate
#gate_str += str(sub_gate) + ", "
if abs(sub_gate) in self.block_contents:
gates.append(self.block_contents[abs(sub_gate)])
gate_str += str(-1 * int(imp1)) + ", " + str(imp2) + ", "
elif g.get_attribute_str() == "dimp":
aux2 = self.idCounter + 1
self.idCounter += 1
aux1 = self.idCounter + 1
self.idCounter += 1
imp1 = ""
imp2 = ""
i = 0
for sub_gate in g.get_body():
if i == 0:
imp1 = sub_gate
i = 1
else:
imp2 = sub_gate
#gate_str += str(sub_gate) + ", "
if abs(sub_gate) in self.block_contents:
gates.append(self.block_contents[abs(sub_gate)])
gate_str = str(g.get_id()) + " = " + "and" + "(" + str(aux1) + ", " + str(aux2) + ")\n"
gates_str_list.append(gate_str)
left = str(aux1) + " = or(" + str(-1 * int(imp1)) + ", " + str(imp2) + ")\n"
gates_str_list.append(left)
gate_str = str(aux2) + " = or(" + str(-1 * int(imp2)) + ", " + str(imp1) + ")\n"
else:
gate_str = str(g.get_id()) + " = " + g.get_attribute_str() + "("
for sub_gate in g.get_body():
gate_str += str(sub_gate) + ", "
if abs(sub_gate) in self.block_contents:
gates.append(self.block_contents[abs(sub_gate)])
if g.get_body():
gate_str = gate_str[:-2] + ")\n"
else:
gate_str += ")\n"
gates_str_list.append(gate_str)
gates_str_list.reverse()
return_str = ""
for gate_str in gates_str_list:
return_str += gate_str
return return_str
# __________________ Non-prenex QCIR ____________________
"""
Generates a string with the formula written in non-prenex QCIR.
"""
def get_non_prenex_QCIR_string(self):
if self.format == Format.CNF or self.format == Format.circuit_PRENEX:
print("OUTPUT ERROR: Non-prenex QCIR output format unavailable for prenex formulae.")
exit()
if not self.non_prenex_QCIR_str:
self.non_prenex_QCIR_str = self.generate_non_prenex_QCIR()
return self.non_prenex_QCIR_str
def generate_non_prenex_QCIR(self):
preamble = "#QCIR-G14\n" + "output({})\n".format(self.final)
gates = [self.block_contents[self.final]]
gates_str_list = []
gate_str = ""
processed = set()
while gates:
g = gates.pop(0)
if g.get_name() in processed:
continue
else:
processed.add(g.get_name())
gate_contents = g.get_body()
if len(gate_contents) == 2 and (gate_contents[0] in self.block_contents):
att = self.block_contents[gate_contents[0]].get_attribute()
if att == Quantifier.FORALL or att == Quantifier.EXISTS:
q_vars = self.to_str_list([gate_contents[0]])
processed.add(gate_contents[0])
gate_str = "{} = {}({}; {})\n".format(self.blocks[g.get_name()], att.value, q_vars[:-2], gate_contents[1])
gates_str_list.append(gate_str)
gates.append(self.block_contents[gate_contents[1]])
continue
if g.get_attribute_str() == "None":
gate_str = str(g.get_id()) + " = " + "or" + "("
else:
gate_str = str(g.get_id()) + " = " + g.get_attribute_str() + "("
for sub_gate in g.get_body():
gate_str += str(sub_gate) + ", "
if abs(sub_gate) in self.block_contents:
gates.append(self.block_contents[abs(sub_gate)])
if g.get_body():
gate_str = gate_str[:-2] + ")\n"
else:
gate_str += ")\n"
gates_str_list.append(gate_str)
gates_str_list.reverse()
return_str = ""
for gate_str in gates_str_list:
return_str += gate_str
return preamble + return_str
# _______________________ QDIMACS _______________________
def get_QDIMACS_string(self):
if self.format == Format.circuit_NON_PRENEX:
print("FORMAT ERROR: the given formula is in non-prenex format; the only possible output is non-prenex QCIR.")
exit()
if self.format == Format.CNF:
if not self.QDIMACS_str:
self.generate_QDIMACS_from_prenex_QCIR()
return self.QDIMACS_str
elif self.format == Format.circuit_PRENEX:
f1 = open("input.qcir", "w")
f2 = open("output.qdimacs", "w")
f2.close()
f1.write(self.get_QCIR_string())
f1.close()
if not exists("qcir-to-qdimacs.py"):
print("CONVERSION ERROR: to convert to QDIMACS William Klieber's qcir-to-qdimacs.py script is needed in this directory. Download it from https://www.wklieber.com/ghostq/qcir-to-qdimacs.py")
exit()
system("python2 qcir-to-qdimacs.py input.qcir -o output.qdimacs --reclim 25000")
f2 = open("output.qdimacs", "r")
self.QDIMACS_str = f2.read()
f2.close()
remove("input.qcir")
remove("output.qdimacs")
return self.QDIMACS_str
elif self.format == Format.circuit_NON_PRENEX:
print("Prenexing not yet supported!")
def generate_QDIMACS_from_prenex_QCIR(self):
# if QCIR was not generated yet, do it
if not self.QCIR_str:
self.generate_QCIR()
split_QCIR = self.QCIR_str.splitlines()
qdimacs_str = ""
currentQuant = ""
currentLine = ""
nClauses = 0
for line in split_QCIR:
if line.startswith("exists"):
lits = self.get_lits_from_line(line)
if currentQuant == "e":
for lit in lits:
currentLine += " " + str(lit)
else:
if currentLine != "":
qdimacs_str += currentLine + " 0\n"
currentQuant = "e"
currentLine = "e"
for lit in lits:
currentLine += " " + str(lit)
elif line.startswith("forall"):
lits = self.get_lits_from_line(line)
if currentQuant == "a":
for lit in lits:
currentLine += " " + str(lit)
else:
if currentLine != "":
qdimacs_str += currentLine + " 0\n"
currentQuant = "a"
currentLine = "a"
for lit in lits:
currentLine += " " + str(lit)
elif "or" in line:
nClauses += 1
qdimacs_str += currentLine + " 0\n"
currentLine = ""
lits = self.get_lits_from_line(line)
for lit in lits:
if currentLine != "":
currentLine += " " + lit
else:
currentLine += lit
qdimacs_str += currentLine + " 0\n"
preamble = "c Formula Family: {}\n".format(self.get_name())
preamble += "c Values: {}\n".format(self.get_values())
preamble += "p cnf {} {}\n".format(len(self.variables), nClauses)
self.QDIMACS_str = preamble + qdimacs_str
return self.QDIMACS_str
def get_lits_from_line(self, line):
p1 = line.find("(")
p2 = line.find(")")
lits = line[p1+1:p2]
return lits.split(", ")
# ================= Additional methods =================
"""
Evaluates the expression expr bringing into scope the existing
values. Additional valued variables can be added in extraValues.
"""
def evaluate(self, expr, extraValues={}):
variables = [var for var in self.values] + [var for var in extraValues]
assigned_values = [val for val in self.values.values()] + [val for val in extraValues.values()]
pairs = zip(variables, assigned_values)
for p in pairs:
assignment = "{} = {}".format(p[0], p[1])
try:
exec(assignment)
except:
print("EVALUATION ERROR: unable to execute {}".format(assignment))
exit()
try:
return eval(expr)
except:
print("EVALUATION ERROR: unable to evaluate {}".format(expr))
exit()
"""
Normalizes a variable name given some indices and valued indices.
"""
def normalize_name(self, varName, varIndices, valuedIndices={}):
varName = varName + '('
for index in varIndices:
varName = varName + ' ' + str(valuedIndices[index]) if index in valuedIndices else varName + ' ' + str(index)
varName = varName + ' )'
return varName
"""
Iterates over a list of conditions, generating all possible tuples of values
for the given indices.
"""
def iterate(self, conditions, extra_valued_indices={}):
stack = [[{}, 0]]
while stack:
valuedIndices, currentCondition = stack.pop(0)
if currentCondition < len(conditions):
condition = conditions[currentCondition]
if condition[0] == 'other':
booleanCondition = self.evaluate(condition[1], valuedIndices)
if booleanCondition:
stack.append([valuedIndices.copy(), currentCondition + 1])
else:
continue
else:
index = condition[0]
if index not in extra_valued_indices:
lim1 = self.evaluate(condition[1][0], valuedIndices)
lim2 = self.evaluate(condition[1][1], valuedIndices)
for ix in range(lim1, lim2 + 1):
valuedIndices[index] = ix
stack.append([valuedIndices.copy(), currentCondition + 1])
else:
valuedIndices[index] = extra_valued_indices[index]
stack.append([valuedIndices.copy(), currentCondition + 1])
else:
yield valuedIndices
"""
Substitues indices for values.
"""
def substitute(self, indices, values, extra_values={}):
subs = []
for ix in indices:
if ix in self.values:
subs.append(self.values[ix])
elif ix in values:
subs.append(values[ix])
elif ix in extra_values:
subs.append(extra_values[ix])
else:
subs.append(int(ix))
return subs
"""
Checks whether a certain name is already used for a block or a variable.
"""
def is_defined(self, name):
return (name in self.variables) or (name in self.blocks)
"""
Prints the internal representation of the formula
"""
def print_formula(self):
my_formula = "========== Printed QBF ==========\n"
my_formula = my_formula + "Printing the formula of the family {}, defined in {} format, for the VALUES:\n".format(self.get_name(), self.get_format_str())
my_formula = my_formula + "\n"
for val in [" {} = {};\n".format(param.get_name(), self.values[param.get_name()]) for param in self.get_parameters()]:
my_formula = my_formula + val
my_formula = my_formula + "\n"
my_formula = my_formula + "The formula has the following {} variables, with assigned corresponding numeric identifiers:\n\n".format(len(self.get_variables()))
for var in self.get_variables():
my_formula = my_formula + " {} --> {}\n".format(var, self.variables[var])
my_formula = my_formula + "\n"
my_formula = my_formula + "The formula has the following {} blocks, with assigned corresponding numeric identifiers and contents:\n\n".format(len(self.blocks))
for b in self.blocks:
my_formula = my_formula + " {} --> {}, with contents {}\n".format(b, self.blocks[b], self.block_contents[self.blocks[b]].get_body())
my_formula = my_formula + "\n"
my_formula = my_formula + "The formula has the following {} groupings, which contains the following blocks:\n\n".format(len(self.groupings))
for g in self.groupings:
my_formula = my_formula + " {}, with contents {}\n".format(g, self.groupings[g])
my_formula = my_formula + "\n"
my_formula = my_formula + "The formula has the following quantifiers and operators associated to the blocks: \n"
for block in self.block_contents:
my_formula = my_formula + " Block {}, with attribute {}\n".format(block, self.block_contents[block].get_attribute_str())
my_formula = my_formula + "\n"
my_formula = my_formula + "The output of the formula is determined by the block {}, i.e. {}\n".format(self.final, self.block_contents[self.final].get_name())
my_formula = my_formula + "======================================================\n"
print(my_formula)
verbose = False
formula = QBF()
#==============================================================================
#=============================== Traversal Class ==============================
#==============================================================================
"""
A set of functions triggered from the grammar that handle tokens read
in the input file.
It generates a QBF object that is updated with the information gathered
from the parsed definition.
"""
@v_args(inline=True)
class TraverseTree(Transformer):
""" Creates an empty QBF object that will be updated as parsing proceeds """
def __init__(self):
if formula:
self.formula = formula
else:
self.formula = QBF()
""" Handles a value assignment such as 'value: k = 10;' """
def handle_value(self, name, expr):
if verbose:
print("VALUE: Handling parameter {} with value {}.".format(name, expr))
self.formula.add_value(str(name), str(expr))
""" Sets the name of the formula family """
def set_name(self, name):
if verbose:
print("NAME: setting name \"{}\".".format(name))
self.formula.set_name(str(name))
""" Sets the format of the formula family """
def set_format(self, f):
if verbose:
print("FORMAT: setting format \'{}\'.".format(f))
self.formula.set_format(str(f))
""" Handles a parameter declaration """
def add_parameter(self, p, t, *c):
constr = []
for elem in c:
constr.append(str(elem))
if verbose:
print("PARAMETER: adding parameter {} of type {} with constraints {}".format(p, t, constr))