Updated globally and conjunction

This commit is contained in:
Shromona MacBook 2016-12-08 22:13:10 -08:00
parent 6f20a4811c
commit 5683a6902f

View file

@ -22,10 +22,10 @@ def _(stl):
@pointwise_satf.register(stl.And)
def _(stl):
def sat_comp(x,t):
sat = bitarray(len(t))
sat = ~bitarray(len(t))
for arg in stl.args:
sat = ~pointwise_satf(arg)(x, t) | ~sat
return ~sat
sat = ~(~pointwise_satf(arg)(x, t) | ~sat)
return sat
return sat_comp