-
Notifications
You must be signed in to change notification settings - Fork 1
/
formula.py
243 lines (219 loc) · 8.49 KB
/
formula.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
from typing import *
from itertools import *
from copy import copy
import logging
class Clause:
__slots__ = ('undef', 'defined', 'i_')
# undef: Set[int]
# defined: Set[int]
# i_: int
def __init__(self, undef: Iterable[int], defined: Iterable[int], i_: int):
self.undef = set(undef)
self.defined = set(defined)
self.i_ = i_
def def_(self, other: int) -> int:
self.undef.remove(other) #FIXME keyError:
self.defined.add(other)
return len(self.undef)
def undef_(self, other: int) -> None:
self.defined.remove(other)
self.undef.add(other)
class VarInfo:
__slots__ = ('n_', 'stat', 'rev')
# undef: Set[int]
# rev: Dict[Clause, bool] # role(+-) of its occurrences in each clause
# # number of negatively and/or positively occurrences
# stat: List[int]
# n_: int
def __init__(self, n: int):
self.n_ = n
self.stat = [0, 0]
self.rev = {}
class Formula:
__slots__ = ('raw', 'cnf', 'var_info', 'var_value',
'model', 'changes', 'frame', 'depth',
'one', 'zero', 'clacnt', 'curstep')
# # the following members are managed by push & pop, used in the recursive process
# raw: List[List[int]]
# cnf: Dict[int, Clause]
# var_info: List[VarInfo]
# var_value: Dict[int, Tuple[bool, # value
# int, # depth
# Optional[Set[int]]]] # any edge table
# model: Optional[List[int]]
# changes: List[int]
# frame: List[int]
# depth: int
# clacnt: int
# one: Set[Clause] # guaranteed to be size 0 after bcp exits
# zero: Optional[List[int]] # not None during the inflating process(backjumping)
# curstep : int
def get_var(self, x: int) -> VarInfo:
return self.var_info[abs(x) - 1]
def assign(self, _var: int, value: bool,
cause: Optional[Set[int]] = None) -> None:
assert(_var > 0)
self.var_value[_var] = (value, self.depth,
None if cause is None else copy(cause))
self.changes.append(_var)
for cl, role in self.get_var(_var).rev.items():
x = cl.def_(_var * (-1 + 2 * role))
if role == value:
self.before_unmount(cl, _var) # privatize these clauses
self.one.discard(cl)
del self.cnf[cl.i_]
else:
if x == 0:
self.one.discard(cl)
self.zero = list(cl.defined)
elif x == 1:
self.one.add(cl)
def after_mounted(self, cl: Clause, father: int) -> None:
for x in chain(cl.undef, cl.defined):
if x == father or -x == father: continue
self.get_var(x).rev[cl] = x > 0
self.get_var(x).stat[x > 0] += 1
assert self.get_var(x).stat[x > 0]
def before_unmount(self, cl: Clause, father: int) -> None:
for x in chain(cl.undef, cl.defined):
if x == father or -x == father: continue
self.get_var(x).stat[x > 0] -= 1
assert self.get_var(x).stat[x > 0] >= 0
del self.get_var(x).rev[cl]
def push(self) -> None:
self.depth += 1
#logging.debug('push called, depth = %d' % self.depth)
self.frame.append(len(self.changes))
def unassign(self, _var: int) -> None:
assert(_var > 0)
value = self.var_value[_var][0]
for cl, role in self.get_var(_var).rev.items():
if role == value:
self.cnf[cl.i_] = cl
self.after_mounted(cl, _var)
cl.undef_(_var * (-1 + 2 * role))
del self.var_value[_var]
def pop(self) -> None:
last = self.frame.pop()
while len(self.changes) > last:
p = self.changes.pop() # throws IndexError indicating unsat
if type(p) == int:
self.unassign(p)
else:
assert False
self.depth -= 1
#logging.debug('pop called, depth = %d' % self.depth)
def bcp(self) -> bool:
if self.zero is not None:
#logging.debug('bcp returned false!')
return False
self.one = {i for k, i in self.cnf.items() if len(i.undef) == 1}
while (self.zero is not None) or len(self.one):
if self.zero is not None:
#logging.debug('bcp returned false!')
return False
y = self.one.pop()
assert (len(y.undef) == 1)
m = next(iter(y.undef))
self.assign(abs(m), m > 0, y.defined)
#logging.debug('--must assign %d to var_%d because %s' % ( m > 0, abs(m), str(y.defined)))
return True
def add_clause(self, cl: Iterable[int]) -> None:
ud, dd = (set(), set())
cl = sorted(list(set(cl)), key=abs)
if any(abs(cl[i]) == abs(cl[i + 1]) for i in range(len(cl) - 1)):
logging.info('useless clause: %s'%str(cl))
return
for x in cl:
x1 = abs(x)
if x1 in self.var_value:
assert self.var_value[x1][0] != (x > 0)
dd.add(x)
else:
ud.add(x)
assert (not dd or len(ud) == 1)
tp = self.cnf[self.clacnt] = Clause(ud, dd, self.clacnt)
self.after_mounted(tp, 0)
self.clacnt += 1
def __init__(self, n: int, cnf1: List[List[int]]):
self.var_info = [VarInfo(1 + i) for i in range(n)]
self.raw = cnf1
self.clacnt = self.depth = 0
self.cnf = {}
self.var_value = {}
self.model = None
self.changes = []
self.frame = []
self.one = set()
self.zero = None
self.curstep = 0
for cl in cnf1: self.add_clause(cl)
def validate(self) -> None:
n = len(self.var_info)
self.model = {(i + 1): False for i in range(n)}
for x, (y, p1, p2) in self.var_value.items():
self.model[x] = y
assert all([any([self.model[abs(j)] == (j > 0) for j in i]) for i in self.raw])
def decide(self) -> bool: # True if already satisfied
assert not self.one and not self.zero
for q, cl in self.cnf.items():
if len(cl.undef) == 0:
assert False
dc = (0, 0, False)
for p in self.var_info:
assert(p.n_ > 0)
if p.n_ not in self.var_value and (p.stat[0] + p.stat[1]):
if not p.stat[0]: # pure
dc = (p.stat[1], p.n_, True)
break
elif not p.stat[1]:
dc = (p.stat[0], p.n_, False)
break
elif p.stat[0] > dc[0]:
dc = (p.stat[0], p.n_, False)
elif p.stat[1] > dc[0]:
dc = (p.stat[1], p.n_, True)
if dc[0] == 0:
assert len(self.cnf) == 0;
return True # SAT
x, y, w = dc
self.assign(y, w, None)
#logging.debug('--decided to assign %d to var_%d' % (w, y))
return False
def step(self) -> bool: # throws IndexError
def inflate_cause(cause: Iterable[int]):
for i in cause: # 找到低阶项或者同阶自由变量,特别的是同阶决定变量要yieldfrom 边表
i1 = abs(i)
val, dep, edg = self.var_value[i1]
if val: i1 = -i1
# if it's been an positive assignment before,
# now it's to be forced false, and vice versa
if dep < self.depth or edg is None:
yield (i1, dep == self.depth and edg is None)
else:
yield from inflate_cause(edg)
self.curstep += 1
logging.info('current step is: %d, depth = %d'%(self.curstep, self.depth))
if self.bcp():
self.push()
if self.decide():
return True
elif self.zero is None:
return False
assert self.zero is not None
self.one.clear()
#logging.debug('::zero = ' + str(self.zero))
newlst = list(inflate_cause(self.zero))
self.zero = {x[0] for x in newlst}
self.pop() # must pop at first, or getting wrong number of undecided vars
if any(x[1] for x in newlst):
self.add_clause(self.zero)
self.zero = None
return False
def solve(self) -> bool:
try:
while not self.step(): pass
self.validate()
return True
except IndexError:
return False